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:*', |
brettw
2015/01/30 18:44:59
Did you mean to update this line?
Dirk Pranke
2015/01/30 18:46:50
Umm, yes :). Wonder how I missed that ...
| |
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:sdch', |
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 '../third_party/icu/icu.gyp:*', | 28 '../third_party/icu/icu.gyp:*', |
29 '../third_party/libxml/libxml.gyp:*', | 29 '../third_party/libxml/libxml.gyp:*', |
30 '../third_party/sqlite/sqlite.gyp:*', | 30 '../third_party/sqlite/sqlite.gyp:*', |
31 '../third_party/zlib/zlib.gyp:*', | 31 '../third_party/zlib/zlib.gyp:*', |
32 '../ui/accessibility/accessibility.gyp:*', | 32 '../ui/accessibility/accessibility.gyp:*', |
33 '../ui/base/ui_base.gyp:*', | 33 '../ui/base/ui_base.gyp:*', |
34 '../ui/display/display.gyp:display_unittests', | 34 '../ui/display/display.gyp:display_unittests', |
(...skipping 1344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1379 'dependencies': [ | 1379 'dependencies': [ |
1380 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1380 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1381 '../ui/views/views.gyp:views', | 1381 '../ui/views/views.gyp:views', |
1382 '../ui/views/views.gyp:views_unittests', | 1382 '../ui/views/views.gyp:views_unittests', |
1383 ], | 1383 ], |
1384 }, # target_name: macviews_builder | 1384 }, # target_name: macviews_builder |
1385 ], # targets | 1385 ], # targets |
1386 }], # os=='mac' and toolkit_views==1 | 1386 }], # os=='mac' and toolkit_views==1 |
1387 ], # conditions | 1387 ], # conditions |
1388 } | 1388 } |
OLD | NEW |