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 group("all_tests") { | 10 group("all_tests") { |
(...skipping 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 "//testing/gtest", | 376 "//testing/gtest", |
377 "//third_party/ocmock", | 377 "//third_party/ocmock", |
378 "//ui/base", | 378 "//ui/base", |
379 ] | 379 ] |
380 | 380 |
381 sources = [ | 381 sources = [ |
382 "public/test/fakes/crw_test_js_injection_receiver.h", | 382 "public/test/fakes/crw_test_js_injection_receiver.h", |
383 "public/test/fakes/crw_test_js_injection_receiver.mm", | 383 "public/test/fakes/crw_test_js_injection_receiver.mm", |
384 "public/test/fakes/test_browser_state.cc", | 384 "public/test/fakes/test_browser_state.cc", |
385 "public/test/fakes/test_browser_state.h", | 385 "public/test/fakes/test_browser_state.h", |
| 386 "public/test/fakes/test_java_script_dialog_presenter.h", |
| 387 "public/test/fakes/test_java_script_dialog_presenter.mm", |
386 "public/test/fakes/test_native_content.h", | 388 "public/test/fakes/test_native_content.h", |
387 "public/test/fakes/test_native_content.mm", | 389 "public/test/fakes/test_native_content.mm", |
388 "public/test/fakes/test_native_content_provider.h", | 390 "public/test/fakes/test_native_content_provider.h", |
389 "public/test/fakes/test_native_content_provider.mm", | 391 "public/test/fakes/test_native_content_provider.mm", |
390 "public/test/fakes/test_navigation_manager.h", | 392 "public/test/fakes/test_navigation_manager.h", |
391 "public/test/fakes/test_navigation_manager.mm", | 393 "public/test/fakes/test_navigation_manager.mm", |
392 "public/test/fakes/test_web_client.h", | 394 "public/test/fakes/test_web_client.h", |
393 "public/test/fakes/test_web_client.mm", | 395 "public/test/fakes/test_web_client.mm", |
394 "public/test/fakes/test_web_state.h", | 396 "public/test/fakes/test_web_state.h", |
395 "public/test/fakes/test_web_state.mm", | 397 "public/test/fakes/test_web_state.mm", |
| 398 "public/test/fakes/test_web_state_delegate.h", |
| 399 "public/test/fakes/test_web_state_delegate.mm", |
396 "public/test/fakes/test_web_view_content_view.h", | 400 "public/test/fakes/test_web_view_content_view.h", |
397 "public/test/fakes/test_web_view_content_view.mm", | 401 "public/test/fakes/test_web_view_content_view.mm", |
398 "public/test/http_server.h", | 402 "public/test/http_server.h", |
399 "public/test/http_server.mm", | 403 "public/test/http_server.mm", |
400 "public/test/http_server_util.h", | 404 "public/test/http_server_util.h", |
401 "public/test/http_server_util.mm", | 405 "public/test/http_server_util.mm", |
402 "public/test/js_test_util.h", | 406 "public/test/js_test_util.h", |
403 "public/test/js_test_util.mm", | 407 "public/test/js_test_util.mm", |
404 "public/test/mock_image_data_fetcher.h", | 408 "public/test/mock_image_data_fetcher.h", |
405 "public/test/mock_image_data_fetcher.mm", | 409 "public/test/mock_image_data_fetcher.mm", |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
626 } | 630 } |
627 | 631 |
628 grit("resources") { | 632 grit("resources") { |
629 source = "ios_web_resources.grd" | 633 source = "ios_web_resources.grd" |
630 use_qualified_include = true | 634 use_qualified_include = true |
631 outputs = [ | 635 outputs = [ |
632 "grit/ios_web_resources.h", | 636 "grit/ios_web_resources.h", |
633 "ios_web_resources.pak", | 637 "ios_web_resources.pak", |
634 ] | 638 ] |
635 } | 639 } |
OLD | NEW |