OLD | NEW |
---|---|
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'conditions': [ | 7 'conditions': [ |
sgk
2009/06/02 07:33:47
This whole condition should be deleted, because we
| |
8 ['OS!="win"', { | 8 ['OS!="win"', { |
9 'all_gyps%': 1, | 9 'all_gyps%': 1, |
10 },{ # else OS=="win" | 10 },{ # else OS=="win" |
11 'all_gyps%': 0, | 11 'all_gyps%': 0, |
12 }], | 12 }], |
13 ], | 13 ], |
14 }, | 14 }, |
15 'includes': [ | 15 'includes': [ |
16 'common.gypi', | 16 'common.gypi', |
17 ], | 17 ], |
18 'targets': [ | 18 'targets': [ |
19 { | 19 { |
20 'target_name': 'All', | 20 'target_name': 'All', |
21 'type': 'none', | 21 'type': 'none', |
22 'xcode_create_dependents_test_runner': 1, | 22 'xcode_create_dependents_test_runner': 1, |
23 'dependencies': [ | 23 'dependencies': [ |
24 '../app/app.gyp:*', | 24 '../app/app.gyp:*', |
25 '../base/base.gyp:*', | 25 '../base/base.gyp:*', |
26 '../chrome/chrome.gyp:*', | |
26 '../media/media.gyp:*', | 27 '../media/media.gyp:*', |
27 '../net/net.gyp:*', | 28 '../net/net.gyp:*', |
28 '../printing/printing.gyp:*', | 29 '../printing/printing.gyp:*', |
29 '../sdch/sdch.gyp:*', | 30 '../sdch/sdch.gyp:*', |
30 '../skia/skia.gyp:*', | 31 '../skia/skia.gyp:*', |
31 '../testing/gmock.gyp:*', | 32 '../testing/gmock.gyp:*', |
32 '../testing/gtest.gyp:*', | 33 '../testing/gtest.gyp:*', |
33 '../third_party/bzip2/bzip2.gyp:*', | 34 '../third_party/bzip2/bzip2.gyp:*', |
34 '../third_party/codesighs/codesighs.gyp:*', | 35 '../third_party/codesighs/codesighs.gyp:*', |
35 '../third_party/ffmpeg/ffmpeg.gyp:*', | 36 '../third_party/ffmpeg/ffmpeg.gyp:*', |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
77 }, { | 78 }, { |
78 'dependencies': [ | 79 'dependencies': [ |
79 '../third_party/libevent/libevent.gyp:*', | 80 '../third_party/libevent/libevent.gyp:*', |
80 ], | 81 ], |
81 }], | 82 }], |
82 ['OS=="win" or (OS=="linux" and toolkit_views==1)', { | 83 ['OS=="win" or (OS=="linux" and toolkit_views==1)', { |
83 'dependencies': [ | 84 'dependencies': [ |
84 '../views/views.gyp:*', | 85 '../views/views.gyp:*', |
85 ], | 86 ], |
86 }], | 87 }], |
87 ['all_gyps', { | |
88 'dependencies': [ | |
89 '../chrome/chrome.gyp:*', | |
90 ], | |
91 }], | |
92 ], | 88 ], |
93 }, | 89 }, |
94 ], | 90 ], |
95 'conditions': [ | 91 'conditions': [ |
96 ['OS=="mac"', { | 92 ['OS=="mac"', { |
97 'targets': [ | 93 'targets': [ |
98 { | 94 { |
99 # Target to build everything needed for layout tests to cut down | 95 # Target to build everything needed for layout tests to cut down |
100 # on what the layout test bots have to build. | 96 # on what the layout test bots have to build. |
101 'target_name': 'build_for_layout_tests', | 97 'target_name': 'build_for_layout_tests', |
(...skipping 11 matching lines...) Expand all Loading... | |
113 'type': 'none', | 109 'type': 'none', |
114 'dependencies': [ | 110 'dependencies': [ |
115 'All', | 111 'All', |
116 '../chrome/chrome.gyp:build_app_dmg', | 112 '../chrome/chrome.gyp:build_app_dmg', |
117 ], | 113 ], |
118 }, | 114 }, |
119 ], | 115 ], |
120 }], | 116 }], |
121 ], | 117 ], |
122 } | 118 } |
OLD | NEW |