| 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/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 | 8 |
| 9 source_set("web") { | 9 source_set("web") { |
| 10 deps = [ | 10 deps = [ |
| 11 ":core", | 11 ":core", |
| 12 ":js_resources", | 12 ":js_resources", |
| 13 ":resources", | 13 ":resources", |
| 14 ":user_agent", | 14 ":user_agent", |
| 15 "//base", | 15 "//base", |
| 16 "//components/url_formatter", | 16 "//components/url_formatter", |
| 17 "//ios/net", | 17 "//ios/net", |
| 18 "//ios/third_party/blink:html_tokenizer", | 18 "//ios/third_party/blink:html_tokenizer", |
| 19 "//mojo/edk/system", | |
| 20 "//mojo/public/cpp/system", | 19 "//mojo/public/cpp/system", |
| 21 "//mojo/public/js", | 20 "//mojo/public/js", |
| 22 "//net", | 21 "//net", |
| 23 "//services/shell/public/cpp", | 22 "//services/shell/public/cpp", |
| 24 "//ui/base", | 23 "//ui/base", |
| 25 "//ui/gfx", | 24 "//ui/gfx", |
| 26 "//ui/gfx/geometry:geometry", | 25 "//ui/gfx/geometry:geometry", |
| 27 "//ui/resources", | 26 "//ui/resources", |
| 28 "//url", | 27 "//url", |
| 29 ] | 28 ] |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 408 ":core", | 407 ":core", |
| 409 ":ios_web_unittests_bundle_data", | 408 ":ios_web_unittests_bundle_data", |
| 410 ":run_all_unittests", | 409 ":run_all_unittests", |
| 411 ":test_support", | 410 ":test_support", |
| 412 ":web", | 411 ":web", |
| 413 "//base", | 412 "//base", |
| 414 "//base/test:test_support", | 413 "//base/test:test_support", |
| 415 "//ios/net", | 414 "//ios/net", |
| 416 "//ios/testing:ocmock_support", | 415 "//ios/testing:ocmock_support", |
| 417 "//ios/web/test:mojo_bindings", | 416 "//ios/web/test:mojo_bindings", |
| 418 "//mojo/edk/system", | |
| 419 "//net:test_support", | 417 "//net:test_support", |
| 420 "//services/shell/public/cpp", | 418 "//services/shell/public/cpp", |
| 421 "//testing/gmock", | 419 "//testing/gmock", |
| 422 "//testing/gtest", | 420 "//testing/gtest", |
| 423 "//third_party/ocmock", | 421 "//third_party/ocmock", |
| 424 "//ui/base:test_support", | 422 "//ui/base:test_support", |
| 425 ] | 423 ] |
| 426 | 424 |
| 427 sources = [ | 425 sources = [ |
| 428 "active_state_manager_impl_unittest.mm", | 426 "active_state_manager_impl_unittest.mm", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 } | 546 } |
| 549 | 547 |
| 550 grit("resources") { | 548 grit("resources") { |
| 551 source = "ios_web_resources.grd" | 549 source = "ios_web_resources.grd" |
| 552 use_qualified_include = true | 550 use_qualified_include = true |
| 553 outputs = [ | 551 outputs = [ |
| 554 "grit/ios_web_resources.h", | 552 "grit/ios_web_resources.h", |
| 555 "ios_web_resources.pak", | 553 "ios_web_resources.pak", |
| 556 ] | 554 ] |
| 557 } | 555 } |
| OLD | NEW |