| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
| 10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
| 11 # the link of the actual chrome (or chromium) executable on | 11 # the link of the actual chrome (or chromium) executable on |
| 12 # Linux or Mac, and into chrome.dll on Windows. | 12 # Linux or Mac, and into chrome.dll on Windows. |
| 13 'chromium_dependencies': [ | 13 'chromium_dependencies': [ |
| 14 'common', | 14 'common', |
| 15 'browser', | 15 'browser', |
| 16 'debugger', | 16 'debugger', |
| 17 'renderer', | 17 'renderer', |
| 18 'syncapi', | 18 'syncapi', |
| 19 'utility', | 19 'utility', |
| 20 'worker', | 20 'worker', |
| 21 '../printing/printing.gyp:printing', | 21 '../printing/printing.gyp:printing', |
| 22 '../webkit/webkit.gyp:inspector_resources', | 22 '../webkit/webkit.gyp:inspector_resources', |
| 23 ], | 23 ], |
| 24 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', | 24 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 25 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 25 'protoc_out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 26 # TODO(mmoss) This might need to go somewhere more general, then we can use | |
| 27 # it to also rewrite app/locales/locales.gyp with a helper script. | |
| 28 # NOTE: When these end up in the Mac bundle, we need to replace '-' for '_' | |
| 29 # so Cocoa is happy (http://crbug.com/20441). | |
| 30 'locales': [ | |
| 31 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | |
| 32 'en-US', 'es-419', 'es', 'et', 'fi', 'fil', 'fr', 'gu', 'he', | |
| 33 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', | |
| 34 'ml', 'mr', 'nb', 'nl', 'or', 'pl', 'pt-BR', 'pt-PT', 'ro', | |
| 35 'ru', 'sk', 'sl', 'sr', 'sv', 'ta', 'te', 'th', 'tr', | |
| 36 'uk', 'vi', 'zh-CN', 'zh-TW', | |
| 37 ], | |
| 38 'chrome_strings_grds': [ | 26 'chrome_strings_grds': [ |
| 39 # Localizable resources. | 27 # Localizable resources. |
| 40 'app/resources/locale_settings.grd', | 28 'app/resources/locale_settings.grd', |
| 41 'app/chromium_strings.grd', | 29 'app/chromium_strings.grd', |
| 42 'app/generated_resources.grd', | 30 'app/generated_resources.grd', |
| 43 'app/google_chrome_strings.grd', | 31 'app/google_chrome_strings.grd', |
| 44 ], | 32 ], |
| 45 'chrome_resources_grds': [ | 33 'chrome_resources_grds': [ |
| 46 # Data resources. | 34 # Data resources. |
| 47 'browser/browser_resources.grd', | 35 'browser/browser_resources.grd', |
| (...skipping 6497 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6545 'dependencies': [ | 6533 'dependencies': [ |
| 6546 '../third_party/pthreads-win32/pthreads.gyp:pthreads', | 6534 '../third_party/pthreads-win32/pthreads.gyp:pthreads', |
| 6547 ], | 6535 ], |
| 6548 }], | 6536 }], |
| 6549 ], | 6537 ], |
| 6550 }, | 6538 }, |
| 6551 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 | 6539 ], # targets when chrome_personalization==1 and use_syncapi_stub==0 |
| 6552 }], | 6540 }], |
| 6553 ], # 'conditions' | 6541 ], # 'conditions' |
| 6554 } | 6542 } |
| OLD | NEW |