Chromium Code Reviews| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 76 'type': 'shared_library', | 76 'type': 'shared_library', |
| 77 'variables': { | 77 'variables': { |
| 78 'enable_wexit_time_destructors': 1, | 78 'enable_wexit_time_destructors': 1, |
| 79 }, | 79 }, |
| 80 'sources': [ | 80 'sources': [ |
| 81 'app/chrome_command_ids.h', | 81 'app/chrome_command_ids.h', |
| 82 'app/chrome_dll_resource.h', | 82 'app/chrome_dll_resource.h', |
| 83 'app/chrome_main.cc', | 83 'app/chrome_main.cc', |
| 84 'app/chrome_main_delegate.cc', | 84 'app/chrome_main_delegate.cc', |
| 85 'app/chrome_main_delegate.h', | 85 'app/chrome_main_delegate.h', |
| 86 'app/chrome_main_mac.mm', | 86 'app/chrome_main_mac.mm', |
|
satorux1
2015/02/10 08:15:38
oops. .mm should be handled too.
| |
| 87 '../base/win/dllmain.cc', | |
| 87 'app/chrome_main_mac.h', | 88 'app/chrome_main_mac.h', |
| 88 'app/close_handle_hook_win.cc', | 89 'app/close_handle_hook_win.cc', |
| 89 'app/close_handle_hook_win.h', | 90 'app/close_handle_hook_win.h', |
| 90 'app/delay_load_hook_win.cc', | 91 'app/delay_load_hook_win.cc', |
| 91 'app/delay_load_hook_win.h', | 92 'app/delay_load_hook_win.h', |
| 92 '../base/win/dllmain.cc', | |
| 93 ], | 93 ], |
| 94 'dependencies': [ | 94 'dependencies': [ |
| 95 '<@(chromium_browser_dependencies)', | 95 '<@(chromium_browser_dependencies)', |
| 96 '../content/content.gyp:content_app_browser', | 96 '../content/content.gyp:content_app_browser', |
| 97 ], | 97 ], |
| 98 'conditions': [ | 98 'conditions': [ |
| 99 ['OS=="win"', { | 99 ['OS=="win"', { |
| 100 'dependencies': [ | 100 'dependencies': [ |
| 101 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | 101 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
| 102 ], | 102 ], |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 378 'dependencies': [ | 378 'dependencies': [ |
| 379 '../pdf/pdf.gyp:pdf', | 379 '../pdf/pdf.gyp:pdf', |
| 380 ], | 380 ], |
| 381 }], | 381 }], |
| 382 ], | 382 ], |
| 383 }, # target chrome_child_dll | 383 }, # target chrome_child_dll |
| 384 ], | 384 ], |
| 385 }], | 385 }], |
| 386 ], | 386 ], |
| 387 } | 387 } |
| OLD | NEW |