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 ['OS=="mac" or OS=="win"', { | 6 ['OS=="mac" or OS=="win"', { |
7 'targets': [ | 7 'targets': [ |
8 { | 8 { |
9 'target_name': 'chrome_dll', | 9 'target_name': 'chrome_dll', |
10 'type': 'none', | 10 'type': 'none', |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 'type': 'shared_library', | 77 'type': 'shared_library', |
78 'variables': { | 78 'variables': { |
79 'enable_wexit_time_destructors': 1, | 79 'enable_wexit_time_destructors': 1, |
80 }, | 80 }, |
81 'dependencies': [ | 81 'dependencies': [ |
82 '<@(chromium_browser_dependencies)', | 82 '<@(chromium_browser_dependencies)', |
83 '../components/components.gyp:policy', | 83 '../components/components.gyp:policy', |
84 '../content/content.gyp:content_app_browser', | 84 '../content/content.gyp:content_app_browser', |
85 ], | 85 ], |
86 'conditions': [ | 86 'conditions': [ |
| 87 ['OS=="win"', { |
| 88 'dependencies': [ |
| 89 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
| 90 ], |
| 91 }], |
87 ['use_aura==1', { | 92 ['use_aura==1', { |
88 'dependencies': [ | 93 'dependencies': [ |
89 '../ui/compositor/compositor.gyp:compositor', | 94 '../ui/compositor/compositor.gyp:compositor', |
90 ], | 95 ], |
91 }], | 96 }], |
92 ['OS=="win" and target_arch=="ia32" and MSVS_VERSION!="2013"', { | 97 ['OS=="win" and target_arch=="ia32" and MSVS_VERSION!="2013"', { |
93 # TODO(scottmg): The assembler is very broken in VS2013 and | 98 # TODO(scottmg): The assembler is very broken in VS2013 and |
94 # crashes on the generated .asm file, so disable this for now. | 99 # crashes on the generated .asm file, so disable this for now. |
95 # This should be revisited after a VS2013 update. See | 100 # This should be revisited after a VS2013 update. See |
96 # http://crbug.com/288948. | 101 # http://crbug.com/288948. |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 'CHROME_MULTIPLE_DLL_CHILD', | 361 'CHROME_MULTIPLE_DLL_CHILD', |
357 ], | 362 ], |
358 'sources': [ | 363 'sources': [ |
359 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', | 364 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', |
360 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.rc', | 365 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.rc', |
361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 366 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
362 'app/chrome_main.cc', | 367 'app/chrome_main.cc', |
363 'app/chrome_main_delegate.cc', | 368 'app/chrome_main_delegate.cc', |
364 'app/chrome_main_delegate.h', | 369 'app/chrome_main_delegate.h', |
365 ], | 370 ], |
| 371 'conditions': [ |
| 372 ['OS=="win"', { |
| 373 'dependencies': [ |
| 374 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
| 375 ], |
| 376 }], |
| 377 ], |
366 }, # target chrome_child_dll | 378 }, # target chrome_child_dll |
367 ], | 379 ], |
368 }], | 380 }], |
369 ], | 381 ], |
370 } | 382 } |
OLD | NEW |