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 'conditions': [ | 5 'conditions': [ |
6 # Dummy target to allow chrome to require chrome_dll to build | 6 # Dummy target to allow chrome to require chrome_dll to build |
7 # without actually linking to the library | 7 # without actually linking to the library |
8 ['OS=="mac"', { | 8 ['OS=="mac"', { |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'app/chrome_main_mac.h', | 117 'app/chrome_main_mac.h', |
118 'app/chrome_main_mac.mm', | 118 'app/chrome_main_mac.mm', |
119 'app/delay_load_hook_win.cc', | 119 'app/delay_load_hook_win.cc', |
120 'app/delay_load_hook_win.h', | 120 'app/delay_load_hook_win.h', |
121 ], | 121 ], |
122 'dependencies': [ | 122 'dependencies': [ |
123 '<@(chromium_browser_dependencies)', | 123 '<@(chromium_browser_dependencies)', |
124 'chrome_features.gyp:chrome_common_features', | 124 'chrome_features.gyp:chrome_common_features', |
125 'policy_path_parser', | 125 'policy_path_parser', |
126 '../content/content.gyp:content_app_browser', | 126 '../content/content.gyp:content_app_browser', |
| 127 '../third_party/cld_2/cld_2.gyp:cld_2', |
127 ], | 128 ], |
128 'conditions': [ | 129 'conditions': [ |
129 ['OS=="win"', { | 130 ['OS=="win"', { |
130 'dependencies': [ | 131 'dependencies': [ |
131 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | 132 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
132 '<(DEPTH)/components/components.gyp:policy', | 133 '<(DEPTH)/components/components.gyp:policy', |
133 ], | 134 ], |
134 }], | 135 }], |
135 ['use_aura==1', { | 136 ['use_aura==1', { |
136 'dependencies': [ | 137 'dependencies': [ |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 ], | 265 ], |
265 'dependencies!': [ | 266 'dependencies!': [ |
266 '../content/content.gyp:content_app_browser', | 267 '../content/content.gyp:content_app_browser', |
267 ], | 268 ], |
268 }], | 269 }], |
269 ['chrome_multiple_dll==0 and enable_plugins==1', { | 270 ['chrome_multiple_dll==0 and enable_plugins==1', { |
270 'dependencies': [ | 271 'dependencies': [ |
271 '../pdf/pdf.gyp:pdf', | 272 '../pdf/pdf.gyp:pdf', |
272 ], | 273 ], |
273 }], | 274 }], |
274 ['cld_version==1', { | |
275 'dependencies': [ | |
276 '<(DEPTH)/third_party/cld/cld.gyp:cld', | |
277 ], | |
278 }], | |
279 ['cld_version==2', { | |
280 'dependencies': [ | |
281 '<(DEPTH)/third_party/cld_2/cld_2.gyp:cld_2', | |
282 ], | |
283 }], | |
284 ['OS=="mac" and component!="shared_library"', { | 275 ['OS=="mac" and component!="shared_library"', { |
285 'includes': [ 'chrome_dll_bundle.gypi' ], | 276 'includes': [ 'chrome_dll_bundle.gypi' ], |
286 }], | 277 }], |
287 ['OS=="mac" and component=="shared_library"', { | 278 ['OS=="mac" and component=="shared_library"', { |
288 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], }, | 279 'xcode_settings': { 'OTHER_LDFLAGS': [ '-Wl,-ObjC' ], }, |
289 }], | 280 }], |
290 ['OS=="mac"', { | 281 ['OS=="mac"', { |
291 'dependencies': [ | 282 'dependencies': [ |
292 '../components/components.gyp:crash_component', | 283 '../components/components.gyp:crash_component', |
293 '../components/components.gyp:policy', | 284 '../components/components.gyp:policy', |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 'dependencies': [ | 394 'dependencies': [ |
404 '../pdf/pdf.gyp:pdf', | 395 '../pdf/pdf.gyp:pdf', |
405 ], | 396 ], |
406 }], | 397 }], |
407 ], | 398 ], |
408 }, # target chrome_child_dll | 399 }, # target chrome_child_dll |
409 ], | 400 ], |
410 }], | 401 }], |
411 ], | 402 ], |
412 } | 403 } |
OLD | NEW |