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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 '../ui/views/views.gyp:views', | 115 '../ui/views/views.gyp:views', |
116 '../webkit/glue/resources/webkit_resources.gyp:webkit_resources'
, | 116 '../webkit/glue/resources/webkit_resources.gyp:webkit_resources'
, |
117 ], | 117 ], |
118 'sources': [ | 118 'sources': [ |
119 'app/chrome_command_ids.h', | 119 'app/chrome_command_ids.h', |
120 'app/chrome_dll.rc', | 120 'app/chrome_dll.rc', |
121 'app/chrome_dll_resource.h', | 121 'app/chrome_dll_resource.h', |
122 'app/chrome_main.cc', | 122 'app/chrome_main.cc', |
123 'app/chrome_main_delegate.cc', | 123 'app/chrome_main_delegate.cc', |
124 'app/chrome_main_delegate.h', | 124 'app/chrome_main_delegate.h', |
| 125 'app/close_handle_hook_win.cc', |
| 126 'app/close_handle_hook_win.h', |
125 'app/delay_load_hook_win.cc', | 127 'app/delay_load_hook_win.cc', |
126 'app/delay_load_hook_win.h', | 128 'app/delay_load_hook_win.h', |
127 | 129 |
128 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', | 130 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc
', |
129 '../base/win/dllmain.cc', | 131 '../base/win/dllmain.cc', |
130 | 132 |
131 # Cursors. | 133 # Cursors. |
132 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.r
c', | 134 '<(SHARED_INTERMEDIATE_DIR)/ui/resources/ui_unscaled_resources.r
c', |
133 ], | 135 ], |
134 'include_dirs': [ | 136 'include_dirs': [ |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 'policy_path_parser', | 344 'policy_path_parser', |
343 ], | 345 ], |
344 'defines': [ | 346 'defines': [ |
345 'CHROME_MULTIPLE_DLL_CHILD', | 347 'CHROME_MULTIPLE_DLL_CHILD', |
346 ], | 348 ], |
347 'sources': [ | 349 'sources': [ |
348 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', | 350 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', |
349 'app/chrome_main.cc', | 351 'app/chrome_main.cc', |
350 'app/chrome_main_delegate.cc', | 352 'app/chrome_main_delegate.cc', |
351 'app/chrome_main_delegate.h', | 353 'app/chrome_main_delegate.h', |
| 354 'app/close_handle_hook_win.cc', |
| 355 'app/close_handle_hook_win.h', |
352 ], | 356 ], |
353 'conditions': [ | 357 'conditions': [ |
354 ['OS=="win"', { | 358 ['OS=="win"', { |
355 'dependencies': [ | 359 'dependencies': [ |
356 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | 360 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
357 ], | 361 ], |
358 'conditions': [ | 362 'conditions': [ |
359 ['chrome_pgo_phase==1', { | 363 ['chrome_pgo_phase==1', { |
360 'msvs_settings': { | 364 'msvs_settings': { |
361 'VCLinkerTool': { | 365 'VCLinkerTool': { |
362 'LinkTimeCodeGeneration': '2', | 366 'LinkTimeCodeGeneration': '2', |
363 }, | 367 }, |
364 }, | 368 }, |
365 }], | 369 }], |
366 ['chrome_pgo_phase==2', { | 370 ['chrome_pgo_phase==2', { |
367 'msvs_settings': { | 371 'msvs_settings': { |
368 'VCLinkerTool': { | 372 'VCLinkerTool': { |
369 'LinkTimeCodeGeneration': '3', | 373 'LinkTimeCodeGeneration': '3', |
370 }, | 374 }, |
371 }, | 375 }, |
372 }], | 376 }], |
373 ] | 377 ] |
374 }], | 378 }], |
375 ], | 379 ], |
376 }, # target chrome_child_dll | 380 }, # target chrome_child_dll |
377 ], | 381 ], |
378 }], | 382 }], |
379 ], | 383 ], |
380 } | 384 } |
OLD | NEW |