| 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', | 26 'ar', 'bg', 'bn', 'ca', 'cs', 'da', 'de', 'el', 'en-GB', |
| 27 'en-US', 'es-419', 'es', 'et', 'fi', 'fil', 'fr', 'gu', 'he', | 27 'en-US', 'es-419', 'es', 'et', 'fi', 'fil', 'fr', 'gu', 'he', |
| 28 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', | 28 'hi', 'hr', 'hu', 'id', 'it', 'ja', 'kn', 'ko', 'lt', 'lv', |
| 29 'ml', 'mr', 'nb', 'nl', 'or', 'pl', 'pt-BR', 'pt-PT', 'ro', | 29 'ml', 'mr', 'nb', 'nl', 'or', 'pl', 'pt-BR', 'pt-PT', 'ro', |
| 30 'ru', 'sk', 'sl', 'sr', 'sv', 'ta', 'te', 'th', 'tr', | 30 'ru', 'sk', 'sl', 'sr', 'sv', 'ta', 'te', 'th', 'tr', |
| 31 'uk', 'vi', 'zh-CN', 'zh-TW', | 31 'uk', 'vi', 'zh-CN', 'zh-TW', |
| 32 ], | 32 ], |
| 33 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py',], | 33 'repack_locales_cmd': ['python', 'tools/build/repack_locales.py',], |
| 34 'browser_tests_sources': [ | 34 'browser_tests_sources': [ |
| 35 'browser/browser_browsertest.cc', | 35 'browser/browser_browsertest.cc', |
| 36 'browser/browser_init_browsertest.cc', |
| 36 'browser/crash_recovery_browsertest.cc', | 37 'browser/crash_recovery_browsertest.cc', |
| 37 'browser/download/save_page_browsertest.cc', | 38 'browser/download/save_page_browsertest.cc', |
| 38 'browser/ssl/ssl_browser_tests.cc', | 39 'browser/ssl/ssl_browser_tests.cc', |
| 39 ], | 40 ], |
| 40 'browser_tests_sources_win_specific': [ | 41 'browser_tests_sources_win_specific': [ |
| 41 'browser/extensions/extension_shelf_model_unittest.cc', | 42 'browser/extensions/extension_shelf_model_unittest.cc', |
| 42 'browser/extensions/extension_startup_unittest.cc', | 43 'browser/extensions/extension_startup_unittest.cc', |
| 43 'browser/extensions/extension_browsertest.cc', | 44 'browser/extensions/extension_browsertest.cc', |
| 44 'browser/extensions/extension_browsertest.h', | 45 'browser/extensions/extension_browsertest.h', |
| 45 'browser/extensions/extension_browsertests_misc.cc', | 46 'browser/extensions/extension_browsertests_misc.cc', |
| (...skipping 5401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5447 # Use outputs of this action as inputs for the main target build. | 5448 # Use outputs of this action as inputs for the main target build. |
| 5448 # Seems as a misnomer but makes this happy on Linux (scons). | 5449 # Seems as a misnomer but makes this happy on Linux (scons). |
| 5449 'process_outputs_as_sources': 1, | 5450 'process_outputs_as_sources': 1, |
| 5450 }, | 5451 }, |
| 5451 ], # 'actions' | 5452 ], # 'actions' |
| 5452 }, | 5453 }, |
| 5453 ] | 5454 ] |
| 5454 }], | 5455 }], |
| 5455 ], # 'conditions' | 5456 ], # 'conditions' |
| 5456 } | 5457 } |
| OLD | NEW |