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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 }, | 79 }, |
80 'sources': [ | 80 'sources': [ |
81 '../base/win/dllmain.cc', | 81 '../base/win/dllmain.cc', |
82 'app/chrome_command_ids.h', | 82 'app/chrome_command_ids.h', |
83 'app/chrome_dll_resource.h', | 83 'app/chrome_dll_resource.h', |
84 'app/chrome_main.cc', | 84 'app/chrome_main.cc', |
85 'app/chrome_main_delegate.cc', | 85 'app/chrome_main_delegate.cc', |
86 'app/chrome_main_delegate.h', | 86 'app/chrome_main_delegate.h', |
87 'app/chrome_main_mac.h', | 87 'app/chrome_main_mac.h', |
88 'app/chrome_main_mac.mm', | 88 'app/chrome_main_mac.mm', |
| 89 'app/chrome_watcher_client_win.cc', |
| 90 'app/chrome_watcher_client_win.h', |
| 91 'app/chrome_watcher_command_line_win.cc', |
| 92 'app/chrome_watcher_command_line_win.h', |
89 'app/close_handle_hook_win.cc', | 93 'app/close_handle_hook_win.cc', |
90 'app/close_handle_hook_win.h', | 94 'app/close_handle_hook_win.h', |
91 'app/delay_load_hook_win.cc', | 95 'app/delay_load_hook_win.cc', |
92 'app/delay_load_hook_win.h', | 96 'app/delay_load_hook_win.h', |
| 97 'app/signature_validator_win.cc', |
| 98 'app/signature_validator_win.h', |
93 ], | 99 ], |
94 'dependencies': [ | 100 'dependencies': [ |
95 '<@(chromium_browser_dependencies)', | 101 '<@(chromium_browser_dependencies)', |
96 '../content/content.gyp:content_app_browser', | 102 '../content/content.gyp:content_app_browser', |
97 ], | 103 ], |
98 'conditions': [ | 104 'conditions': [ |
99 ['OS=="win"', { | 105 ['OS=="win"', { |
100 'dependencies': [ | 106 'dependencies': [ |
101 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', | 107 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf', |
102 ], | 108 ], |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
379 'dependencies': [ | 385 'dependencies': [ |
380 '../pdf/pdf.gyp:pdf', | 386 '../pdf/pdf.gyp:pdf', |
381 ], | 387 ], |
382 }], | 388 }], |
383 ], | 389 ], |
384 }, # target chrome_child_dll | 390 }, # target chrome_child_dll |
385 ], | 391 ], |
386 }], | 392 }], |
387 ], | 393 ], |
388 } | 394 } |
OLD | NEW |