| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': '<(SHARED_INTERMEDIATE_DIR)/build/LASTCHANGE', | 7 'lastchange_path': '<(SHARED_INTERMEDIATE_DIR)/build/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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 'installer/gcapi/gcapi_test.rc', | 64 'installer/gcapi/gcapi_test.rc', |
| 65 'installer/gcapi/resource.h', | 65 'installer/gcapi/resource.h', |
| 66 ], | 66 ], |
| 67 }, | 67 }, |
| 68 { | 68 { |
| 69 'target_name': 'installer_util_unittests', | 69 'target_name': 'installer_util_unittests', |
| 70 'type': 'executable', | 70 'type': 'executable', |
| 71 'dependencies': [ | 71 'dependencies': [ |
| 72 'installer_util', | 72 'installer_util', |
| 73 'installer_util_strings', | 73 'installer_util_strings', |
| 74 '../content/content.gyp:content_common', | |
| 75 '<(DEPTH)/base/base.gyp:base', | 74 '<(DEPTH)/base/base.gyp:base', |
| 76 '<(DEPTH)/base/base.gyp:base_i18n', | 75 '<(DEPTH)/base/base.gyp:base_i18n', |
| 77 '<(DEPTH)/base/base.gyp:test_support_base', | 76 '<(DEPTH)/base/base.gyp:test_support_base', |
| 78 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | 77 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', |
| 78 '<(DEPTH)/content/content.gyp:content_common', |
| 79 '<(DEPTH)/testing/gmock.gyp:gmock', | 79 '<(DEPTH)/testing/gmock.gyp:gmock', |
| 80 '<(DEPTH)/testing/gtest.gyp:gtest', | 80 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 81 ], | 81 ], |
| 82 'include_dirs': [ | 82 'include_dirs': [ |
| 83 '<(DEPTH)', | 83 '<(DEPTH)', |
| 84 ], | 84 ], |
| 85 'sources': [ | 85 'sources': [ |
| 86 'installer/setup/compat_checks_unittest.cc', | 86 'installer/setup/compat_checks_unittest.cc', |
| 87 'installer/setup/setup_constants.cc', | 87 'installer/setup/setup_constants.cc', |
| 88 'installer/util/browser_distribution_unittest.cc', | 88 'installer/util/browser_distribution_unittest.cc', |
| (...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 934 'variables': { | 934 'variables': { |
| 935 'branding_dir': 'app/theme/google_chrome', | 935 'branding_dir': 'app/theme/google_chrome', |
| 936 }, | 936 }, |
| 937 }, { # else branding!="Chrome" | 937 }, { # else branding!="Chrome" |
| 938 'variables': { | 938 'variables': { |
| 939 'branding_dir': 'app/theme/chromium', | 939 'branding_dir': 'app/theme/chromium', |
| 940 }, | 940 }, |
| 941 }], | 941 }], |
| 942 ], | 942 ], |
| 943 } | 943 } |
| OLD | NEW |