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'. Only used on Android. |
9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
10 }, | 10 }, |
11 'targets': [ | 11 'targets': [ |
12 { | 12 { |
13 'target_name': 'All', | 13 'target_name': 'All', |
14 'type': 'none', | 14 'type': 'none', |
15 'xcode_create_dependents_test_runner': 1, | 15 'xcode_create_dependents_test_runner': 1, |
16 'dependencies': [ | 16 'dependencies': [ |
17 'some.gyp:*', | 17 'some.gyp:*', |
18 '../base/base.gyp:*', | 18 '../base/base.gyp:*', |
19 '../components/components.gyp:*', | 19 '../components/components.gyp:*', |
20 '../components/components_tests.gyp:*', | 20 '../components/components_tests.gyp:*', |
21 '../content/content.gyp:*', | 21 '../content/content.gyp:*', |
22 '../crypto/crypto.gyp:*', | 22 '../crypto/crypto.gyp:*', |
23 '../net/net.gyp:*', | 23 '../net/net.gyp:*', |
24 '../sdch/sdch.gyp:*', | 24 '../sdch/sdch.gyp:*', |
25 '../sql/sql.gyp:*', | 25 '../sql/sql.gyp:*', |
26 '../testing/gmock.gyp:*', | 26 '../testing/gmock.gyp:*', |
27 '../testing/gtest.gyp:*', | 27 '../testing/gtest.gyp:*', |
28 '../testing/gtest_nacl.gyp:*', | |
bradn
2014/07/18 22:56:10
I think this need to be gated on disable_nacl, but
| |
28 '../third_party/icu/icu.gyp:*', | 29 '../third_party/icu/icu.gyp:*', |
29 '../third_party/libxml/libxml.gyp:*', | 30 '../third_party/libxml/libxml.gyp:*', |
30 '../third_party/sqlite/sqlite.gyp:*', | 31 '../third_party/sqlite/sqlite.gyp:*', |
31 '../third_party/zlib/zlib.gyp:*', | 32 '../third_party/zlib/zlib.gyp:*', |
32 '../ui/accessibility/accessibility.gyp:*', | 33 '../ui/accessibility/accessibility.gyp:*', |
33 '../ui/base/ui_base.gyp:*', | 34 '../ui/base/ui_base.gyp:*', |
34 '../ui/display/display.gyp:display_unittests', | 35 '../ui/display/display.gyp:display_unittests', |
35 '../ui/snapshot/snapshot.gyp:*', | 36 '../ui/snapshot/snapshot.gyp:*', |
36 '../url/url.gyp:*', | 37 '../url/url.gyp:*', |
37 ], | 38 ], |
(...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1260 'dependencies': [ | 1261 'dependencies': [ |
1261 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1262 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1262 '../ui/views/views.gyp:views', | 1263 '../ui/views/views.gyp:views', |
1263 '../ui/views/views.gyp:views_unittests', | 1264 '../ui/views/views.gyp:views_unittests', |
1264 ], | 1265 ], |
1265 }, # target_name: macviews_builder | 1266 }, # target_name: macviews_builder |
1266 ], # targets | 1267 ], # targets |
1267 }], # os=='mac' and toolkit_views==1 | 1268 }], # os=='mac' and toolkit_views==1 |
1268 ], # conditions | 1269 ], # conditions |
1269 } | 1270 } |
OLD | NEW |