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

Side by Side Diff: ios/web/BUILD.gn

Issue 2935933003: [ObjC ARC] Converts ios/web:ios_web_web_state_unittests to ARC. (Closed)
Patch Set: Created 3 years, 6 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
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("//ios/build/config.gni") 5 import("//ios/build/config.gni")
6 import("//ios/web/js_compile.gni") 6 import("//ios/web/js_compile.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 9
10 group("all_tests") { 10 group("all_tests") {
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 "public/referrer_util_unittest.cc", 611 "public/referrer_util_unittest.cc",
612 "public/serializable_user_data_manager_unittest.mm", 612 "public/serializable_user_data_manager_unittest.mm",
613 "public/test/crw_mock_web_state_delegate.h", 613 "public/test/crw_mock_web_state_delegate.h",
614 "public/test/crw_mock_web_state_delegate.mm", 614 "public/test/crw_mock_web_state_delegate.mm",
615 "public/user_agent_unittest.mm", 615 "public/user_agent_unittest.mm",
616 "public/web_state/page_viewport_state_unittest.mm", 616 "public/web_state/page_viewport_state_unittest.mm",
617 ] 617 ]
618 } 618 }
619 619
620 source_set("ios_web_web_state_unittests") { 620 source_set("ios_web_web_state_unittests") {
621 configs += [ "//build/config/compiler:enable_arc" ]
621 testonly = true 622 testonly = true
622 deps = [ 623 deps = [
623 ":core", 624 ":core",
624 ":ios_web_public_unittests", 625 ":ios_web_public_unittests",
625 ":user_agent", 626 ":user_agent",
626 ":web", 627 ":web",
627 "//base", 628 "//base",
628 "//base/test:test_support", 629 "//base/test:test_support",
629 "//components/payments/core", 630 "//components/payments/core",
630 "//components/url_formatter", 631 "//components/url_formatter",
(...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after
856 "ios_web_resources.pak", 857 "ios_web_resources.pak",
857 ] 858 ]
858 grit_flags = [ 859 grit_flags = [
859 "-E", 860 "-E",
860 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), 861 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir),
861 ] 862 ]
862 deps = [ 863 deps = [
863 "//mojo/public/js:bindings", 864 "//mojo/public/js:bindings",
864 ] 865 ]
865 } 866 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698