| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 'app/chrome_main.cc', | 114 'app/chrome_main.cc', |
| 115 'app/chrome_main_delegate.cc', | 115 'app/chrome_main_delegate.cc', |
| 116 'app/chrome_main_delegate.h', | 116 'app/chrome_main_delegate.h', |
| 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 '../content/content.gyp:content_app_browser', | 125 '../content/content.gyp:content_app_browser', |
| 125 ], | 126 ], |
| 126 'conditions': [ | 127 'conditions': [ |
| 127 ['OS=="win"', { | 128 ['OS=="win"', { |
| 128 'dependencies': [ | 129 'dependencies': [ |
| 129 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | 130 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
| 130 ], | 131 ], |
| 131 }], | 132 }], |
| 132 ['OS=="win" and configuration_policy==1', { | 133 ['OS=="win" and configuration_policy==1', { |
| 133 'dependencies': [ | 134 'dependencies': [ |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 'type': 'shared_library', | 341 'type': 'shared_library', |
| 341 'product_name': 'chrome_child', | 342 'product_name': 'chrome_child', |
| 342 'variables': { | 343 'variables': { |
| 343 'enable_wexit_time_destructors': 1, | 344 'enable_wexit_time_destructors': 1, |
| 344 }, | 345 }, |
| 345 'dependencies': [ | 346 'dependencies': [ |
| 346 '<@(chromium_child_dependencies)', | 347 '<@(chromium_child_dependencies)', |
| 347 '../components/components.gyp:browser_watcher_client', | 348 '../components/components.gyp:browser_watcher_client', |
| 348 '../content/content.gyp:content_app_child', | 349 '../content/content.gyp:content_app_child', |
| 349 '../third_party/kasko/kasko.gyp:kasko', | 350 '../third_party/kasko/kasko.gyp:kasko', |
| 351 'chrome_features.gyp:chrome_common_features', |
| 350 'chrome_version_resources', | 352 'chrome_version_resources', |
| 351 'policy_path_parser', | 353 'policy_path_parser', |
| 352 ], | 354 ], |
| 353 'defines': [ | 355 'defines': [ |
| 354 'CHROME_MULTIPLE_DLL_CHILD', | 356 'CHROME_MULTIPLE_DLL_CHILD', |
| 355 ], | 357 ], |
| 356 'sources': [ | 358 'sources': [ |
| 357 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 359 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
| 358 'app/chrome_main.cc', | 360 'app/chrome_main.cc', |
| 359 'app/chrome_main_delegate.cc', | 361 'app/chrome_main_delegate.cc', |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 'dependencies': [ | 413 'dependencies': [ |
| 412 '../pdf/pdf.gyp:pdf', | 414 '../pdf/pdf.gyp:pdf', |
| 413 ], | 415 ], |
| 414 }], | 416 }], |
| 415 ], | 417 ], |
| 416 }, # target chrome_child_dll | 418 }, # target chrome_child_dll |
| 417 ], | 419 ], |
| 418 }], | 420 }], |
| 419 ], | 421 ], |
| 420 } | 422 } |
| OLD | NEW |