Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Side by Side Diff: ios/chrome/test/earl_grey/BUILD.gn

Issue 2882253002: [ObjC ARC] Converts ios/chrome/test/earl_grey:ios_chrome_device_check_egtests to ARC. (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//ios/chrome/test/earl_grey/chrome_ios_eg_test.gni") 5 import("//ios/chrome/test/earl_grey/chrome_ios_eg_test.gni")
6 6
7 group("all_tests") { 7 group("all_tests") {
8 testonly = true 8 testonly = true
9 deps = [ 9 deps = [
10 ":ios_chrome_device_check_egtests", 10 ":ios_chrome_device_check_egtests",
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 # Depends on all EarlGrey test suites to create multitasking tests suite. 91 # Depends on all EarlGrey test suites to create multitasking tests suite.
92 ":ios_chrome_integration_egtests_deps_group", 92 ":ios_chrome_integration_egtests_deps_group",
93 ":ios_chrome_settings_egtests_deps_group", 93 ":ios_chrome_settings_egtests_deps_group",
94 ":ios_chrome_ui_egtests_deps_group", 94 ":ios_chrome_ui_egtests_deps_group",
95 ":ios_chrome_web_egtests_deps_group", 95 ":ios_chrome_web_egtests_deps_group",
96 ] 96 ]
97 97
98 eg_main_application_delegate = "MultitaskingTestApplicationDelegate" 98 eg_main_application_delegate = "MultitaskingTestApplicationDelegate"
99 } 99 }
100 100
101 chrome_ios_eg_test("ios_chrome_device_check_egtests") { 101 chrome_ios_eg_test("ios_chrome_device_check_egtests") {
sdefresne 2017/05/16 08:26:20 I think a better change would be to allow overridi
liaoyuke 2017/05/16 16:08:31 Hi Sylvain, Thank you for the detailed explanatio
102 deps = [
103 ":device_check_sources",
104 ]
105 }
106
107 source_set("device_check_sources") {
108 configs += [ "//build/config/compiler:enable_arc" ]
102 sources = [ 109 sources = [
103 "device_check_egtest.mm", 110 "device_check_egtest.mm",
sdefresne 2017/05/16 08:27:17 This CL needs to add guards to "device_check_egtes
liaoyuke 2017/05/16 16:08:31 Done.
104 ] 111 ]
112 testonly = true
105 deps = [ 113 deps = [
106 ":test_support", 114 ":test_support",
107 "//ios/third_party/earl_grey", 115 "//ios/third_party/earl_grey",
108 "//url", 116 "//url",
109 ] 117 ]
110 } 118 }
111 119
112 chrome_ios_eg_test("ios_chrome_flaky_egtests") { 120 chrome_ios_eg_test("ios_chrome_flaky_egtests") {
113 deps = [ 121 deps = [
114 ":test_support", 122 ":test_support",
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 211
204 source_set("hooks") { 212 source_set("hooks") {
205 testonly = true 213 testonly = true
206 sources = [ 214 sources = [
207 "eg_tests_hook.mm", 215 "eg_tests_hook.mm",
208 ] 216 ]
209 deps = [ 217 deps = [
210 "//ios/chrome/app:tests_hook", 218 "//ios/chrome/app:tests_hook",
211 ] 219 ]
212 } 220 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698