| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |