OLD | NEW |
---|---|
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
193 # Chromium functionality directly into the executable. | 193 # Chromium functionality directly into the executable. |
194 '<@(chromium_dependencies)', | 194 '<@(chromium_dependencies)', |
195 # Needed for chrome_dll_main.cc initialization of libraries. | 195 # Needed for chrome_dll_main.cc initialization of libraries. |
196 '../build/linux/system.gyp:dbus-glib', | 196 '../build/linux/system.gyp:dbus-glib', |
197 '../build/linux/system.gyp:gtk', | 197 '../build/linux/system.gyp:gtk', |
198 'packed_resources', | 198 'packed_resources', |
199 # Needed to use the master_preferences functions | 199 # Needed to use the master_preferences functions |
200 'installer_util', | 200 'installer_util', |
201 ], | 201 ], |
202 'sources': [ | 202 'sources': [ |
203 'app/chrome_command_ids.h', | |
tony
2010/11/08 23:10:47
Does this target actually use chrome_command_ids.h
| |
203 'app/chrome_dll_main.cc', | 204 'app/chrome_dll_main.cc', |
204 'app/chrome_dll_resource.h', | 205 'app/chrome_dll_resource.h', |
205 ], | 206 ], |
206 'copies': [ | 207 'copies': [ |
207 { | 208 { |
208 'destination': '<(PRODUCT_DIR)', | 209 'destination': '<(PRODUCT_DIR)', |
209 'files': ['tools/build/linux/chrome-wrapper', | 210 'files': ['tools/build/linux/chrome-wrapper', |
210 '../third_party/xdg-utils/scripts/xdg-mime', | 211 '../third_party/xdg-utils/scripts/xdg-mime', |
211 '../third_party/xdg-utils/scripts/xdg-settings', | 212 '../third_party/xdg-utils/scripts/xdg-settings', |
212 ], | 213 ], |
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
584 'message': | 585 'message': |
585 'Copy the Localizable.strings files to the manifest bundle', | 586 'Copy the Localizable.strings files to the manifest bundle', |
586 'process_outputs_as_mac_bundle_resources': 1, | 587 'process_outputs_as_mac_bundle_resources': 1, |
587 }, | 588 }, |
588 ], | 589 ], |
589 }, | 590 }, |
590 ] | 591 ] |
591 }] | 592 }] |
592 ], | 593 ], |
593 } | 594 } |
OLD | NEW |