OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. |
| 9 'app_targets%': [], |
| 10 # For Android-specific targets. |
9 'android_app_targets%': [], | 11 'android_app_targets%': [], |
10 }, | 12 }, |
11 'targets': [ | 13 'targets': [ |
12 { | 14 { |
13 'target_name': 'All', | 15 'target_name': 'All', |
14 'type': 'none', | 16 'type': 'none', |
15 'xcode_create_dependents_test_runner': 1, | 17 'xcode_create_dependents_test_runner': 1, |
16 'dependencies': [ | 18 'dependencies': [ |
| 19 '<@(app_targets)', |
17 'some.gyp:*', | 20 'some.gyp:*', |
18 '../base/base.gyp:*', | 21 '../base/base.gyp:*', |
19 '../components/components.gyp:*', | 22 '../components/components.gyp:*', |
20 '../components/components_tests.gyp:*', | 23 '../components/components_tests.gyp:*', |
21 '../content/content.gyp:*', | 24 '../content/content.gyp:*', |
22 '../crypto/crypto.gyp:*', | 25 '../crypto/crypto.gyp:*', |
23 '../net/net.gyp:*', | 26 '../net/net.gyp:*', |
24 '../sdch/sdch.gyp:*', | 27 '../sdch/sdch.gyp:*', |
25 '../sql/sql.gyp:*', | 28 '../sql/sql.gyp:*', |
26 '../testing/gmock.gyp:*', | 29 '../testing/gmock.gyp:*', |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1379 'dependencies': [ | 1382 'dependencies': [ |
1380 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1383 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1381 '../ui/views/views.gyp:views', | 1384 '../ui/views/views.gyp:views', |
1382 '../ui/views/views.gyp:views_unittests', | 1385 '../ui/views/views.gyp:views_unittests', |
1383 ], | 1386 ], |
1384 }, # target_name: macviews_builder | 1387 }, # target_name: macviews_builder |
1385 ], # targets | 1388 ], # targets |
1386 }], # os=='mac' and toolkit_views==1 | 1389 }], # os=='mac' and toolkit_views==1 |
1387 ], # conditions | 1390 ], # conditions |
1388 } | 1391 } |
OLD | NEW |