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 '../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/pdfium/samples/samples.gyp:*', | |
scottmg
2014/05/24 02:41:39
does it build on ios? might need to go in a !ios b
jam
2014/05/26 19:57:44
removed from ios/android
| |
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/snapshot/snapshot.gyp:*', | 35 '../ui/snapshot/snapshot.gyp:*', |
35 '../url/url.gyp:*', | 36 '../url/url.gyp:*', |
36 ], | 37 ], |
37 'conditions': [ | 38 'conditions': [ |
38 ['OS=="ios"', { | 39 ['OS=="ios"', { |
39 'dependencies': [ | 40 'dependencies': [ |
(...skipping 1186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1226 # http://crbug.com/157234 | 1227 # http://crbug.com/157234 |
1227 #'../chrome/chrome.gyp:sync_integration_tests_run', | 1228 #'../chrome/chrome.gyp:sync_integration_tests_run', |
1228 '../chrome/chrome.gyp:unit_tests_run', | 1229 '../chrome/chrome.gyp:unit_tests_run', |
1229 '../net/net.gyp:net_unittests_run', | 1230 '../net/net.gyp:net_unittests_run', |
1230 ], | 1231 ], |
1231 }, # target_name: chromium_swarm_tests | 1232 }, # target_name: chromium_swarm_tests |
1232 ], | 1233 ], |
1233 }], | 1234 }], |
1234 ], # conditions | 1235 ], # conditions |
1235 } | 1236 } |
OLD | NEW |