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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 'chrome_user32_delay_imports', | 104 'chrome_user32_delay_imports', |
105 ], | 105 ], |
106 },], | 106 },], |
107 ['OS=="win"', { | 107 ['OS=="win"', { |
108 'product_name': 'chrome', | 108 'product_name': 'chrome', |
109 'dependencies': [ | 109 'dependencies': [ |
110 # On Windows, link the dependencies (libraries) that make | 110 # On Windows, link the dependencies (libraries) that make |
111 # up actual Chromium functionality into this .dll. | 111 # up actual Chromium functionality into this .dll. |
112 'chrome_version_resources', | 112 'chrome_version_resources', |
113 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', | 113 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', |
| 114 '../content/app/resources/content_resources.gyp:content_resource
s', |
114 '../crypto/crypto.gyp:crypto', | 115 '../crypto/crypto.gyp:crypto', |
115 '../net/net.gyp:net_resources', | 116 '../net/net.gyp:net_resources', |
116 '../ui/views/views.gyp:views', | 117 '../ui/views/views.gyp:views', |
117 '../webkit/glue/resources/webkit_resources.gyp:webkit_resources'
, | |
118 ], | 118 ], |
119 'sources': [ | 119 'sources': [ |
120 'app/chrome_command_ids.h', | 120 'app/chrome_command_ids.h', |
121 'app/chrome_dll.rc', | 121 'app/chrome_dll.rc', |
122 'app/chrome_dll_resource.h', | 122 'app/chrome_dll_resource.h', |
123 'app/chrome_main.cc', | 123 'app/chrome_main.cc', |
124 'app/chrome_main_delegate.cc', | 124 'app/chrome_main_delegate.cc', |
125 'app/chrome_main_delegate.h', | 125 'app/chrome_main_delegate.h', |
126 'app/delay_load_hook_win.cc', | 126 'app/delay_load_hook_win.cc', |
127 'app/delay_load_hook_win.h', | 127 'app/delay_load_hook_win.h', |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 }, | 372 }, |
373 }], | 373 }], |
374 ] | 374 ] |
375 }], | 375 }], |
376 ], | 376 ], |
377 }, # target chrome_child_dll | 377 }, # target chrome_child_dll |
378 ], | 378 ], |
379 }], | 379 }], |
380 ], | 380 ], |
381 } | 381 } |
OLD | NEW |