| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'lastchange_path': '../build/util/LASTCHANGE', | 7 'lastchange_path': '../build/util/LASTCHANGE', |
| 8 # 'branding_dir' is set in the 'conditions' section at the bottom. | 8 # 'branding_dir' is set in the 'conditions' section at the bottom. |
| 9 }, | 9 }, |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 '../testing/gmock.gyp:gmock', | 82 '../testing/gmock.gyp:gmock', |
| 83 '../testing/gtest.gyp:gtest', | 83 '../testing/gtest.gyp:gtest', |
| 84 ], | 84 ], |
| 85 'include_dirs': [ | 85 'include_dirs': [ |
| 86 '..', | 86 '..', |
| 87 ], | 87 ], |
| 88 'sources': [ | 88 'sources': [ |
| 89 'installer/setup/compat_checks_unittest.cc', | 89 'installer/setup/compat_checks_unittest.cc', |
| 90 'installer/setup/setup_constants.cc', | 90 'installer/setup/setup_constants.cc', |
| 91 'installer/util/channel_info_unittest.cc', | 91 'installer/util/channel_info_unittest.cc', |
| 92 'installer/util/callback_work_item_unittest.cc', |
| 92 'installer/util/copy_reg_key_work_item_unittest.cc', | 93 'installer/util/copy_reg_key_work_item_unittest.cc', |
| 93 'installer/util/copy_tree_work_item_unittest.cc', | 94 'installer/util/copy_tree_work_item_unittest.cc', |
| 94 'installer/util/create_dir_work_item_unittest.cc', | 95 'installer/util/create_dir_work_item_unittest.cc', |
| 95 'installer/util/create_reg_key_work_item_unittest.cc', | 96 'installer/util/create_reg_key_work_item_unittest.cc', |
| 96 'installer/util/delete_after_reboot_helper_unittest.cc', | 97 'installer/util/delete_after_reboot_helper_unittest.cc', |
| 97 'installer/util/delete_reg_key_work_item_unittest.cc', | 98 'installer/util/delete_reg_key_work_item_unittest.cc', |
| 98 'installer/util/delete_reg_value_work_item_unittest.cc', | 99 'installer/util/delete_reg_value_work_item_unittest.cc', |
| 99 'installer/util/delete_tree_work_item_unittest.cc', | 100 'installer/util/delete_tree_work_item_unittest.cc', |
| 100 'installer/util/duplicate_tree_detector_unittest.cc', | 101 'installer/util/duplicate_tree_detector_unittest.cc', |
| 101 'installer/util/fake_installation_state.h', | 102 'installer/util/fake_installation_state.h', |
| (...skipping 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 'branding_dir_100': 'app/theme/default_100_percent/google_chrome', | 1094 'branding_dir_100': 'app/theme/default_100_percent/google_chrome', |
| 1094 }, | 1095 }, |
| 1095 }, { # else branding!="Chrome" | 1096 }, { # else branding!="Chrome" |
| 1096 'variables': { | 1097 'variables': { |
| 1097 'branding_dir': 'app/theme/chromium', | 1098 'branding_dir': 'app/theme/chromium', |
| 1098 'branding_dir_100': 'app/theme/default_100_percent/chromium', | 1099 'branding_dir_100': 'app/theme/default_100_percent/chromium', |
| 1099 }, | 1100 }, |
| 1100 }], | 1101 }], |
| 1101 ], | 1102 ], |
| 1102 } | 1103 } |
| OLD | NEW |