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

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

Issue 2916473002: [ObjC ARC] Converts ios/web:web to ARC. (Closed)
Patch Set: Tweaks to unit test memory management 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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 "webui/web_ui_ios_impl.h", 253 "webui/web_ui_ios_impl.h",
254 "webui/web_ui_ios_impl.mm", 254 "webui/web_ui_ios_impl.mm",
255 ] 255 ]
256 256
257 libs = [ "WebKit.framework" ] 257 libs = [ "WebKit.framework" ]
258 258
259 configs += [ "//build/config/compiler:enable_arc" ] 259 configs += [ "//build/config/compiler:enable_arc" ]
260 } 260 }
261 261
262 source_set("web") { 262 source_set("web") {
263 configs += [ "//build/config/compiler:enable_arc" ]
263 deps = [ 264 deps = [
264 ":core", 265 ":core",
265 ":js_resources", 266 ":js_resources",
266 ":reload_type", 267 ":reload_type",
267 ":resources", 268 ":resources",
268 ":user_agent", 269 ":user_agent",
269 "//base", 270 "//base",
270 "//components/url_formatter", 271 "//components/url_formatter",
271 "//ios/net", 272 "//ios/net",
272 "//ios/third_party/blink:html_tokenizer", 273 "//ios/third_party/blink:html_tokenizer",
(...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after
645 "ios_web_resources.pak", 646 "ios_web_resources.pak",
646 ] 647 ]
647 grit_flags = [ 648 grit_flags = [
648 "-E", 649 "-E",
649 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), 650 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir),
650 ] 651 ]
651 deps = [ 652 deps = [
652 "//mojo/public/js:bindings", 653 "//mojo/public/js:bindings",
653 ] 654 ]
654 } 655 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698