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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
471 deps = [ | 471 deps = [ |
472 ":core", | 472 ":core", |
473 ":ios_web_unittests_bundle_data", | 473 ":ios_web_unittests_bundle_data", |
474 ":run_all_unittests", | 474 ":run_all_unittests", |
475 ":test_support", | 475 ":test_support", |
476 ":web", | 476 ":web", |
477 "//base", | 477 "//base", |
478 "//base/test:test_support", | 478 "//base/test:test_support", |
479 "//ios/net", | 479 "//ios/net", |
480 "//ios/testing:ocmock_support", | 480 "//ios/testing:ocmock_support", |
481 "//ios/web/public/image_fetcher:unit_tests", | |
gambard
2016/11/25 09:11:12
Not sure if I should put this here or in run_all_u
sdefresne
2016/11/25 09:27:50
You must not put it in run_all_unittests.
| |
481 "//ios/web/test:mojo_bindings", | 482 "//ios/web/test:mojo_bindings", |
482 "//net:test_support", | 483 "//net:test_support", |
483 "//services/service_manager/public/cpp", | 484 "//services/service_manager/public/cpp", |
484 "//testing/gmock", | 485 "//testing/gmock", |
485 "//testing/gtest", | 486 "//testing/gtest", |
486 "//third_party/ocmock", | 487 "//third_party/ocmock", |
487 "//ui/base:test_support", | 488 "//ui/base:test_support", |
488 ] | 489 ] |
489 | 490 |
490 sources = [ | 491 sources = [ |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
615 } | 616 } |
616 | 617 |
617 grit("resources") { | 618 grit("resources") { |
618 source = "ios_web_resources.grd" | 619 source = "ios_web_resources.grd" |
619 use_qualified_include = true | 620 use_qualified_include = true |
620 outputs = [ | 621 outputs = [ |
621 "grit/ios_web_resources.h", | 622 "grit/ios_web_resources.h", |
622 "ios_web_resources.pak", | 623 "ios_web_resources.pak", |
623 ] | 624 ] |
624 } | 625 } |
OLD | NEW |