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

Side by Side Diff: ios/chrome/app/BUILD.gn

Issue 2891853002: [ObjC ARC] Converts ios/chrome/app:tests_fake_hook 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 | ios/chrome/app/tests_fake_hook.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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/config/ios/rules.gni") 5 import("//build/config/ios/rules.gni")
6 import("//build/config/mac/base_rules.gni") 6 import("//build/config/mac/base_rules.gni")
7 import("//build/mac/tweak_info_plist.gni") 7 import("//build/mac/tweak_info_plist.gni")
8 import("//ios/build/chrome_build.gni") 8 import("//ios/build/chrome_build.gni")
9 import("//ios/public/provider/chrome/browser/build_config.gni") 9 import("//ios/public/provider/chrome/browser/build_config.gni")
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 } 57 }
58 58
59 source_set("tests_hook") { 59 source_set("tests_hook") {
60 # This target is intentionally not test-only, as the main app depends on it. 60 # This target is intentionally not test-only, as the main app depends on it.
61 sources = [ 61 sources = [
62 "tests_hook.h", 62 "tests_hook.h",
63 ] 63 ]
64 } 64 }
65 65
66 source_set("tests_fake_hook") { 66 source_set("tests_fake_hook") {
67 configs += [ "//build/config/compiler:enable_arc" ]
68
67 # This target is intentionally not test-only, as the main app depends on it. 69 # This target is intentionally not test-only, as the main app depends on it.
68 sources = [ 70 sources = [
69 "tests_fake_hook.mm", 71 "tests_fake_hook.mm",
70 ] 72 ]
71 deps = [ 73 deps = [
72 ":tests_hook", 74 ":tests_hook",
73 ] 75 ]
74 } 76 }
75 77
76 bundle_data("resources") { 78 bundle_data("resources") {
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
336 ] 338 ]
337 sources = [ 339 sources = [
338 "$root_out_dir/share_extension.appex", 340 "$root_out_dir/share_extension.appex",
339 ] 341 ]
340 outputs = [ 342 outputs = [
341 "{{bundle_plugins_dir}}/{{source_file_part}}", 343 "{{bundle_plugins_dir}}/{{source_file_part}}",
342 ] 344 ]
343 } 345 }
344 } 346 }
345 } 347 }
OLDNEW
« no previous file with comments | « no previous file | ios/chrome/app/tests_fake_hook.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698