| 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 # Build EVERYTHING provided by Skia. | 5 # Build EVERYTHING provided by Skia. |
| 6 # (Start with the "most" target, and then add targets that we intentionally | 6 # (Start with the "most" target, and then add targets that we intentionally |
| 7 # left out of "most". See most.gyp for an explanation of which targets are | 7 # left out of "most". See most.gyp for an explanation of which targets are |
| 8 # left out of "most".) | 8 # left out of "most".) |
| 9 # | 9 # |
| 10 # We used to call this the 'all' target, but in SOME cases that | 10 # We used to call this the 'all' target, but in SOME cases that |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 }, { | 26 }, { |
| 27 'dependencies': [ | 27 'dependencies': [ |
| 28 'debugger.gyp:debugger', | 28 'debugger.gyp:debugger', |
| 29 #'v8.gyp:SkV8Example', | 29 #'v8.gyp:SkV8Example', |
| 30 ], | 30 ], |
| 31 }], | 31 }], |
| 32 ['skia_os == "android"', { | 32 ['skia_os == "android"', { |
| 33 'dependencies': [ | 33 'dependencies': [ |
| 34 'android_system.gyp:SampleApp_APK', | 34 'android_system.gyp:SampleApp_APK', |
| 35 ], | 35 ], |
| 36 'conditions': [ | |
| 37 [ 'skia_gpu == 1', { | |
| 38 'dependencies': [ | |
| 39 'android_system.gyp:VisualBench_APK', | |
| 40 ], | |
| 41 }], | |
| 42 ], | |
| 43 }], | 36 }], |
| 44 ], | 37 ], |
| 45 }, | 38 }, |
| 46 ], | 39 ], |
| 47 } | 40 } |
| OLD | NEW |