| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 }, | 109 }, |
| 110 'sources': [ | 110 'sources': [ |
| 111 '../base/win/dllmain.cc', | 111 '../base/win/dllmain.cc', |
| 112 'app/chrome_command_ids.h', | 112 'app/chrome_command_ids.h', |
| 113 'app/chrome_dll_resource.h', | 113 'app/chrome_dll_resource.h', |
| 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/close_handle_hook_win.cc', | |
| 120 'app/close_handle_hook_win.h', | |
| 121 'app/delay_load_hook_win.cc', | 119 'app/delay_load_hook_win.cc', |
| 122 'app/delay_load_hook_win.h', | 120 'app/delay_load_hook_win.h', |
| 123 ], | 121 ], |
| 124 'dependencies': [ | 122 'dependencies': [ |
| 125 '<@(chromium_browser_dependencies)', | 123 '<@(chromium_browser_dependencies)', |
| 126 '../content/content.gyp:content_app_browser', | 124 '../content/content.gyp:content_app_browser', |
| 127 ], | 125 ], |
| 128 'conditions': [ | 126 'conditions': [ |
| 129 ['OS=="win"', { | 127 ['OS=="win"', { |
| 130 'dependencies': [ | 128 'dependencies': [ |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 'policy_path_parser', | 355 'policy_path_parser', |
| 358 ], | 356 ], |
| 359 'defines': [ | 357 'defines': [ |
| 360 'CHROME_MULTIPLE_DLL_CHILD', | 358 'CHROME_MULTIPLE_DLL_CHILD', |
| 361 ], | 359 ], |
| 362 'sources': [ | 360 'sources': [ |
| 363 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
| 364 'app/chrome_main.cc', | 362 'app/chrome_main.cc', |
| 365 'app/chrome_main_delegate.cc', | 363 'app/chrome_main_delegate.cc', |
| 366 'app/chrome_main_delegate.h', | 364 'app/chrome_main_delegate.h', |
| 367 'app/close_handle_hook_win.cc', | |
| 368 'app/close_handle_hook_win.h', | |
| 369 ], | 365 ], |
| 370 'conditions': [ | 366 'conditions': [ |
| 371 ['OS=="win" and win_use_allocator_shim==1', { | 367 ['OS=="win" and win_use_allocator_shim==1', { |
| 372 'dependencies': [ | 368 'dependencies': [ |
| 373 '<(allocator_target)', | 369 '<(allocator_target)', |
| 374 ], | 370 ], |
| 375 }], | 371 }], |
| 376 ['OS=="win"', { | 372 ['OS=="win"', { |
| 377 'conditions': [ | 373 'conditions': [ |
| 378 ['chrome_pgo_phase==1', { | 374 ['chrome_pgo_phase==1', { |
| (...skipping 29 matching lines...) Expand all Loading... |
| 408 'dependencies': [ | 404 'dependencies': [ |
| 409 '../pdf/pdf.gyp:pdf', | 405 '../pdf/pdf.gyp:pdf', |
| 410 ], | 406 ], |
| 411 }], | 407 }], |
| 412 ], | 408 ], |
| 413 }, # target chrome_child_dll | 409 }, # target chrome_child_dll |
| 414 ], | 410 ], |
| 415 }], | 411 }], |
| 416 ], | 412 ], |
| 417 } | 413 } |
| OLD | NEW |