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 |
11 # conflicted with an automatically-generated 'all' target. | 11 # conflicted with an automatically-generated 'all' target. |
12 # See https://code.google.com/p/skia/issues/detail?id=932 | 12 # See https://code.google.com/p/skia/issues/detail?id=932 |
13 # | 13 # |
14 { | 14 { |
15 'targets': [ | 15 'targets': [ |
16 { | 16 { |
17 'target_name': 'everything', | 17 'target_name': 'everything', |
18 'type': 'none', | 18 'type': 'none', |
19 'dependencies': [ | 19 'dependencies': [ |
20 'most.gyp:most', | 20 'most.gyp:most', |
21 'skiaserve.gyp:skiaserve', | 21 'skiaserve.gyp:skiaserve', |
| 22 'tools.gyp:monobench', |
22 ], | 23 ], |
23 'conditions': [ | 24 'conditions': [ |
24 ['skia_os in ("ios", "android")', { | 25 ['skia_os in ("ios", "android")', { |
25 # debugger is not supported on this platform | 26 # debugger is not supported on this platform |
26 }, { | 27 }, { |
27 'dependencies': [ | 28 'dependencies': [ |
28 'debugger.gyp:debugger', | 29 'debugger.gyp:debugger', |
29 #'v8.gyp:SkV8Example', | 30 #'v8.gyp:SkV8Example', |
30 ], | 31 ], |
31 }], | 32 }], |
32 ['skia_os == "android"', { | 33 ['skia_os == "android"', { |
33 'dependencies': [ | 34 'dependencies': [ |
34 'android_system.gyp:SampleApp_APK', | 35 'android_system.gyp:SampleApp_APK', |
35 ], | 36 ], |
36 }], | 37 }], |
37 ], | 38 ], |
38 }, | 39 }, |
39 ], | 40 ], |
40 } | 41 } |
OLD | NEW |