Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1121)

Side by Side Diff: gyp/gputest.gyp

Issue 2205903004: GN: get echo-headers sources via exec_script (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: still needed for Mac Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/gmslides.gypi ('k') | gyp/harfbuzz.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 Google Inc. 1 # Copyright 2015 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'skgputest', 8 'target_name': 'skgputest',
9 'product_name': 'skia_skgputest', 9 'product_name': 'skia_skgputest',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 11 matching lines...) Expand all
22 ], 22 ],
23 'all_dependent_settings': { 23 'all_dependent_settings': {
24 'include_dirs': [ 24 'include_dirs': [
25 '../tools/gpu', 25 '../tools/gpu',
26 ], 26 ],
27 }, 27 },
28 'dependencies': [ 28 'dependencies': [
29 'skia_lib.gyp:skia_lib', 29 'skia_lib.gyp:skia_lib',
30 ], 30 ],
31 'sources': [ 31 'sources': [
32 '<!@(python find.py ../tools/gpu "*")' 32 '<!@(python find.py "*" ../tools/gpu)'
33 ], 33 ],
34 'conditions': [ 34 'conditions': [
35 [ 'skia_mesa', { 'dependencies': [ 'osmesa' ] } ], 35 [ 'skia_mesa', { 'dependencies': [ 'osmesa' ] } ],
36 [ 'skia_angle', { 36 [ 'skia_angle', {
37 'dependencies': [ 37 'dependencies': [
38 'angle.gyp:*', 38 'angle.gyp:*',
39 ], 39 ],
40 'export_dependent_settings': [ 40 'export_dependent_settings': [
41 'angle.gyp:*', 41 'angle.gyp:*',
42 ], 42 ],
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 'conditions': [ 113 'conditions': [
114 [ 'skia_os == "mac"', { 114 [ 'skia_os == "mac"', {
115 'link_settings': { 'library_dirs' : [ '/opt/X11/lib' ], }, 115 'link_settings': { 'library_dirs' : [ '/opt/X11/lib' ], },
116 'include_dirs': [ '/opt/X11/include', ], 116 'include_dirs': [ '/opt/X11/include', ],
117 }], 117 }],
118 ], 118 ],
119 }, 119 },
120 }, 120 },
121 ], 121 ],
122 } 122 }
OLDNEW
« no previous file with comments | « gyp/gmslides.gypi ('k') | gyp/harfbuzz.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698