[email protected] | 3b7efa4 | 2012-02-08 19:41:44 | [diff] [blame] | 1 | # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | { |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 6 | 'dependencies': [ |
| 7 | '../base/base.gyp:base', |
| 8 | '../skia/skia.gyp:skia', |
[email protected] | c9e2cbbb | 2012-05-12 21:17:27 | [diff] [blame] | 9 | '../ui/gl/gl.gyp:gl', |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 10 | ], |
| 11 | 'sources': [ |
satorux | 225d7ed | 2015-02-13 02:23:35 | [diff] [blame] | 12 | 'gpu/gpu_child_thread.cc', |
| 13 | 'gpu/gpu_child_thread.h', |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 14 | 'gpu/gpu_main.cc', |
| 15 | 'gpu/gpu_process.cc', |
| 16 | 'gpu/gpu_process.h', |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 17 | 'gpu/gpu_watchdog_thread.cc', |
| 18 | 'gpu/gpu_watchdog_thread.h', |
[email protected] | 8707caa | 2013-09-04 16:41:30 | [diff] [blame] | 19 | 'gpu/in_process_gpu_thread.cc', |
| 20 | 'gpu/in_process_gpu_thread.h', |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 21 | ], |
| 22 | 'include_dirs': [ |
| 23 | '..', |
| 24 | ], |
| 25 | 'conditions': [ |
| 26 | ['OS=="win"', { |
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 27 | 'include_dirs': [ |
[email protected] | c60e3d8 | 2013-05-13 18:24:39 | [diff] [blame] | 28 | '<(DEPTH)/third_party/khronos', |
jmadill | 29fda863 | 2015-03-18 22:45:22 | [diff] [blame] | 29 | # ANGLE libs picked up from ui/gl |
[email protected] | 6a50225 | 2013-12-13 11:49:09 | [diff] [blame] | 30 | '<(angle_path)/src', |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 31 | '<(DEPTH)/third_party/wtl/include', |
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 32 | ], |
[email protected] | 1eef1c58 | 2012-02-10 23:30:23 | [diff] [blame] | 33 | 'link_settings': { |
| 34 | 'libraries': [ |
| 35 | '-lsetupapi.lib', |
| 36 | ], |
| 37 | }, |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 38 | }], |
[email protected] | d254e7e | 2012-08-04 08:38:10 | [diff] [blame] | 39 | ['target_arch!="arm" and chromeos == 1', { |
| 40 | 'include_dirs': [ |
| 41 | '<(DEPTH)/third_party/libva', |
| 42 | ], |
| 43 | }], |
[email protected] | 54f8747 | 2011-09-26 21:11:29 | [diff] [blame] | 44 | ], |
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 45 | } |