blob: 1c2121d59bcf6e313fad19ca2e0bca58ddecf546 [file] [log] [blame]
[email protected]3b7efa42012-02-08 19:41:441# Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]623c0bd2011-03-12 01:00:412# 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]54f87472011-09-26 21:11:296 'dependencies': [
7 '../base/base.gyp:base',
8 '../skia/skia.gyp:skia',
[email protected]c9e2cbbb2012-05-12 21:17:279 '../ui/gl/gl.gyp:gl',
[email protected]54f87472011-09-26 21:11:2910 ],
11 'sources': [
satorux225d7ed2015-02-13 02:23:3512 'gpu/gpu_child_thread.cc',
13 'gpu/gpu_child_thread.h',
[email protected]54f87472011-09-26 21:11:2914 'gpu/gpu_main.cc',
15 'gpu/gpu_process.cc',
16 'gpu/gpu_process.h',
[email protected]54f87472011-09-26 21:11:2917 'gpu/gpu_watchdog_thread.cc',
18 'gpu/gpu_watchdog_thread.h',
[email protected]8707caa2013-09-04 16:41:3019 'gpu/in_process_gpu_thread.cc',
20 'gpu/in_process_gpu_thread.h',
[email protected]54f87472011-09-26 21:11:2921 ],
22 'include_dirs': [
23 '..',
24 ],
25 'conditions': [
26 ['OS=="win"', {
[email protected]623c0bd2011-03-12 01:00:4127 'include_dirs': [
[email protected]c60e3d82013-05-13 18:24:3928 '<(DEPTH)/third_party/khronos',
jmadill29fda8632015-03-18 22:45:2229 # ANGLE libs picked up from ui/gl
[email protected]6a502252013-12-13 11:49:0930 '<(angle_path)/src',
[email protected]54f87472011-09-26 21:11:2931 '<(DEPTH)/third_party/wtl/include',
[email protected]623c0bd2011-03-12 01:00:4132 ],
[email protected]1eef1c582012-02-10 23:30:2333 'link_settings': {
34 'libraries': [
35 '-lsetupapi.lib',
36 ],
37 },
[email protected]54f87472011-09-26 21:11:2938 }],
[email protected]d254e7e2012-08-04 08:38:1039 ['target_arch!="arm" and chromeos == 1', {
40 'include_dirs': [
41 '<(DEPTH)/third_party/libva',
42 ],
43 }],
[email protected]54f87472011-09-26 21:11:2944 ],
[email protected]623c0bd2011-03-12 01:00:4145}