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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'All', | 8 'target_name': 'All', |
9 'type': 'none', | 9 'type': 'none', |
10 'xcode_create_dependents_test_runner': 1, | 10 'xcode_create_dependents_test_runner': 1, |
11 'dependencies': [ | 11 'dependencies': [ |
12 'some.gyp:*', | 12 'some.gyp:*', |
| 13 '../base/base.gyp:*', |
13 # Add new dependencies to the !ios section just below, not here (see | 14 # Add new dependencies to the !ios section just below, not here (see |
14 # the comment there). | 15 # the comment there). |
15 ], | 16 ], |
16 'conditions': [ | 17 'conditions': [ |
17 # TODO(ios): This is temporary; currently almost nothing builds with | 18 # TODO(ios): This is temporary; currently almost nothing builds with |
18 # OS=ios. Move dependencies back to the main dependencies section above | 19 # OS=ios. Move dependencies back to the main dependencies section above |
19 # as gyp files come online. | 20 # as gyp files come online. |
20 ['OS!="ios"', { | 21 ['OS!="ios"', { |
21 'dependencies': [ | 22 'dependencies': [ |
22 '../base/base.gyp:*', | |
23 '../chrome/chrome.gyp:*', | 23 '../chrome/chrome.gyp:*', |
24 '../content/content.gyp:*', | 24 '../content/content.gyp:*', |
25 '../crypto/crypto.gyp:*', | 25 '../crypto/crypto.gyp:*', |
26 '../ui/ui.gyp:*', | 26 '../ui/ui.gyp:*', |
27 '../gpu/gpu.gyp:*', | 27 '../gpu/gpu.gyp:*', |
28 '../gpu/tools/tools.gyp:*', | 28 '../gpu/tools/tools.gyp:*', |
29 '../ipc/ipc.gyp:*', | 29 '../ipc/ipc.gyp:*', |
30 '../jingle/jingle.gyp:*', | 30 '../jingle/jingle.gyp:*', |
31 '../media/media.gyp:*', | 31 '../media/media.gyp:*', |
32 '../net/net.gyp:*', | 32 '../net/net.gyp:*', |
(...skipping 27 matching lines...) Expand all Loading... |
60 '../third_party/sqlite/sqlite.gyp:*', | 60 '../third_party/sqlite/sqlite.gyp:*', |
61 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', | 61 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', |
62 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:generate_de
vtools_zip', | 62 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:generate_de
vtools_zip', |
63 '../third_party/zlib/zlib.gyp:*', | 63 '../third_party/zlib/zlib.gyp:*', |
64 '../v8/tools/gyp/v8.gyp:*', | 64 '../v8/tools/gyp/v8.gyp:*', |
65 '../webkit/support/webkit_support.gyp:*', | 65 '../webkit/support/webkit_support.gyp:*', |
66 '../webkit/webkit.gyp:*', | 66 '../webkit/webkit.gyp:*', |
67 'temp_gyp/googleurl.gyp:*', | 67 'temp_gyp/googleurl.gyp:*', |
68 '<(libjpeg_gyp_path):*', | 68 '<(libjpeg_gyp_path):*', |
69 ], | 69 ], |
70 }, { | |
71 'dependencies': [ | |
72 '../base/base.gyp:base', | |
73 ], | |
74 }], | 70 }], |
75 ['os_posix==1 and OS!="android" and OS!="ios"', { | 71 ['os_posix==1 and OS!="android" and OS!="ios"', { |
76 'dependencies': [ | 72 'dependencies': [ |
77 '../third_party/yasm/yasm.gyp:*#host', | 73 '../third_party/yasm/yasm.gyp:*#host', |
78 ], | 74 ], |
79 }], | 75 }], |
80 ['OS=="mac" or OS=="ios" or OS=="win"', { | 76 ['OS=="mac" or OS=="ios" or OS=="win"', { |
81 'dependencies': [ | 77 'dependencies': [ |
82 '../third_party/nss/nss.gyp:*', | 78 '../third_party/nss/nss.gyp:*', |
83 ], | 79 ], |
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
676 'dependencies': [ | 672 'dependencies': [ |
677 '../chromeos/chromeos.gyp:chromeos_unittests', | 673 '../chromeos/chromeos.gyp:chromeos_unittests', |
678 ], | 674 ], |
679 }], | 675 }], |
680 ], | 676 ], |
681 }, | 677 }, |
682 ], # targets | 678 ], # targets |
683 }], # "use_aura==1" | 679 }], # "use_aura==1" |
684 ], # conditions | 680 ], # conditions |
685 } | 681 } |
OLD | NEW |