| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//build/mac/tweak_info_plist.gni") | 5 import("//build/mac/tweak_info_plist.gni") |
| 6 import("//build/config/ios/ios_sdk.gni") | 6 import("//build/config/ios/ios_sdk.gni") |
| 7 import("//ios/build/chrome_build.gni") | 7 import("//ios/build/chrome_build.gni") |
| 8 import("//ios/public/provider/chrome/browser/build_config.gni") | 8 import("//ios/public/provider/chrome/browser/build_config.gni") |
| 9 import("//ios/third_party/earl_grey/ios_eg_test.gni") | 9 import("//ios/third_party/earl_grey/ios_eg_test.gni") |
| 10 | 10 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 if (ios_automatically_manage_certs) { | 143 if (ios_automatically_manage_certs) { |
| 144 # Use the same bundle identifier for EarlGrey tests as for unit tests | 144 # Use the same bundle identifier for EarlGrey tests as for unit tests |
| 145 # when managing certificates as the number of free certs is limited. | 145 # when managing certificates as the number of free certs is limited. |
| 146 extra_substitutions += | 146 extra_substitutions += |
| 147 [ "CHROMIUM_BUNDLE_ID=gtest.${ios_generic_test_bundle_id_suffix}" ] | 147 [ "CHROMIUM_BUNDLE_ID=gtest.${ios_generic_test_bundle_id_suffix}" ] |
| 148 } else { | 148 } else { |
| 149 extra_substitutions += [ "CHROMIUM_BUNDLE_ID=gtest.$target_name" ] | 149 extra_substitutions += [ "CHROMIUM_BUNDLE_ID=gtest.$target_name" ] |
| 150 } | 150 } |
| 151 } | 151 } |
| 152 } | 152 } |
| 153 |
| 154 set_defaults("chrome_ios_eg_test") { |
| 155 configs = default_executable_configs |
| 156 } |
| OLD | NEW |