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 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 ['OS=="win"', { | 106 ['OS=="win"', { |
107 'product_name': 'chrome', | 107 'product_name': 'chrome', |
108 'dependencies': [ | 108 'dependencies': [ |
109 # On Windows, link the dependencies (libraries) that make | 109 # On Windows, link the dependencies (libraries) that make |
110 # up actual Chromium functionality into this .dll. | 110 # up actual Chromium functionality into this .dll. |
111 'chrome_version_resources', | 111 'chrome_version_resources', |
112 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', | 112 '../chrome/chrome_resources.gyp:chrome_unscaled_resources', |
113 '../crypto/crypto.gyp:crypto', | 113 '../crypto/crypto.gyp:crypto', |
114 '../net/net.gyp:net_resources', | 114 '../net/net.gyp:net_resources', |
115 '../ui/views/views.gyp:views', | 115 '../ui/views/views.gyp:views', |
116 '../webkit/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/delay_load_hook_win.cc', | 125 'app/delay_load_hook_win.cc', |
126 'app/delay_load_hook_win.h', | 126 'app/delay_load_hook_win.h', |
(...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 }, | 371 }, |
372 }], | 372 }], |
373 ] | 373 ] |
374 }], | 374 }], |
375 ], | 375 ], |
376 }, # target chrome_child_dll | 376 }, # target chrome_child_dll |
377 ], | 377 ], |
378 }], | 378 }], |
379 ], | 379 ], |
380 } | 380 } |
OLD | NEW |