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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 'type': 'shared_library', | 75 'type': 'shared_library', |
76 'variables': { | 76 'variables': { |
77 'enable_wexit_time_destructors': 1, | 77 'enable_wexit_time_destructors': 1, |
78 }, | 78 }, |
79 'dependencies': [ | 79 'dependencies': [ |
80 '<@(chromium_browser_dependencies)', | 80 '<@(chromium_browser_dependencies)', |
81 '../components/components.gyp:policy', | 81 '../components/components.gyp:policy', |
82 '../content/content.gyp:content_app_browser', | 82 '../content/content.gyp:content_app_browser', |
83 ], | 83 ], |
84 'conditions': [ | 84 'conditions': [ |
85 ['OS=="win"', { | |
86 'dependencies': [ | |
87 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | |
88 ], | |
89 }], | |
90 ['use_aura==1', { | 85 ['use_aura==1', { |
91 'dependencies': [ | 86 'dependencies': [ |
92 '../ui/compositor/compositor.gyp:compositor', | 87 '../ui/compositor/compositor.gyp:compositor', |
93 ], | 88 ], |
94 }], | 89 }], |
95 ['OS=="win" and target_arch=="ia32"', { | 90 ['OS=="win" and target_arch=="ia32"', { |
96 # Add a dependency to custom import library for user32 delay | 91 # Add a dependency to custom import library for user32 delay |
97 # imports only in x86 builds. | 92 # imports only in x86 builds. |
98 'dependencies': [ | 93 'dependencies': [ |
99 'chrome_user32_delay_imports', | 94 'chrome_user32_delay_imports', |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
352 ], | 347 ], |
353 'defines': [ | 348 'defines': [ |
354 'CHROME_MULTIPLE_DLL_CHILD', | 349 'CHROME_MULTIPLE_DLL_CHILD', |
355 ], | 350 ], |
356 'sources': [ | 351 'sources': [ |
357 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 352 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
358 'app/chrome_main.cc', | 353 'app/chrome_main.cc', |
359 'app/chrome_main_delegate.cc', | 354 'app/chrome_main_delegate.cc', |
360 'app/chrome_main_delegate.h', | 355 'app/chrome_main_delegate.h', |
361 ], | 356 ], |
362 'conditions': [ | |
363 ['OS=="win"', { | |
364 'dependencies': [ | |
365 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | |
366 ], | |
367 }], | |
368 ], | |
369 }, # target chrome_child_dll | 357 }, # target chrome_child_dll |
370 ], | 358 ], |
371 }], | 359 }], |
372 ], | 360 ], |
373 } | 361 } |
OLD | NEW |