| OLD | NEW |
| 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 source_set("web_arc") { | 10 source_set("web_arc") { |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 | 318 |
| 319 source_set("user_agent") { | 319 source_set("user_agent") { |
| 320 deps = [ | 320 deps = [ |
| 321 "//base", | 321 "//base", |
| 322 ] | 322 ] |
| 323 | 323 |
| 324 sources = [ | 324 sources = [ |
| 325 "public/user_agent.h", | 325 "public/user_agent.h", |
| 326 "public/user_agent.mm", | 326 "public/user_agent.mm", |
| 327 ] | 327 ] |
| 328 |
| 329 configs += [ "//build/config/compiler:enable_arc" ] |
| 328 } | 330 } |
| 329 | 331 |
| 330 source_set("earl_grey_test_support") { | 332 source_set("earl_grey_test_support") { |
| 331 testonly = true | 333 testonly = true |
| 332 | 334 |
| 333 deps = [ | 335 deps = [ |
| 334 ":test_support", | 336 ":test_support", |
| 335 ":web", | 337 ":web", |
| 336 "//base", | 338 "//base", |
| 337 "//base/test:test_support", | 339 "//base/test:test_support", |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 } | 613 } |
| 612 | 614 |
| 613 grit("resources") { | 615 grit("resources") { |
| 614 source = "ios_web_resources.grd" | 616 source = "ios_web_resources.grd" |
| 615 use_qualified_include = true | 617 use_qualified_include = true |
| 616 outputs = [ | 618 outputs = [ |
| 617 "grit/ios_web_resources.h", | 619 "grit/ios_web_resources.h", |
| 618 "ios_web_resources.pak", | 620 "ios_web_resources.pak", |
| 619 ] | 621 ] |
| 620 } | 622 } |
| OLD | NEW |