| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 | 7 |
| 8 source_set("web") { | 8 source_set("web") { |
| 9 deps = [ | 9 deps = [ |
| 10 ":core", | 10 ":core", |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 "//testing/gmock", | 288 "//testing/gmock", |
| 289 "//testing/gtest", | 289 "//testing/gtest", |
| 290 "//third_party/ocmock", | 290 "//third_party/ocmock", |
| 291 ] | 291 ] |
| 292 | 292 |
| 293 sources = [ | 293 sources = [ |
| 294 "public/test/crw_test_js_injection_receiver.h", | 294 "public/test/crw_test_js_injection_receiver.h", |
| 295 "public/test/crw_test_js_injection_receiver.mm", | 295 "public/test/crw_test_js_injection_receiver.mm", |
| 296 "public/test/http_server.h", | 296 "public/test/http_server.h", |
| 297 "public/test/http_server.mm", | 297 "public/test/http_server.mm", |
| 298 "public/test/http_server_util.h", |
| 299 "public/test/http_server_util.mm", |
| 298 "public/test/js_test_util.h", | 300 "public/test/js_test_util.h", |
| 299 "public/test/js_test_util.mm", | 301 "public/test/js_test_util.mm", |
| 302 "public/test/navigation_test_util.h", |
| 303 "public/test/navigation_test_util.mm", |
| 300 "public/test/response_providers/data_response_provider.h", | 304 "public/test/response_providers/data_response_provider.h", |
| 301 "public/test/response_providers/data_response_provider.mm", | 305 "public/test/response_providers/data_response_provider.mm", |
| 302 "public/test/response_providers/file_based_response_provider.h", | 306 "public/test/response_providers/file_based_response_provider.h", |
| 303 "public/test/response_providers/file_based_response_provider.mm", | 307 "public/test/response_providers/file_based_response_provider.mm", |
| 304 "public/test/response_providers/file_based_response_provider_impl.h", | 308 "public/test/response_providers/file_based_response_provider_impl.h", |
| 305 "public/test/response_providers/file_based_response_provider_impl.mm", | 309 "public/test/response_providers/file_based_response_provider_impl.mm", |
| 306 "public/test/response_providers/html_response_provider.h", | 310 "public/test/response_providers/html_response_provider.h", |
| 307 "public/test/response_providers/html_response_provider.mm", | 311 "public/test/response_providers/html_response_provider.mm", |
| 308 "public/test/response_providers/html_response_provider_impl.h", | 312 "public/test/response_providers/html_response_provider_impl.h", |
| 309 "public/test/response_providers/html_response_provider_impl.mm", | 313 "public/test/response_providers/html_response_provider_impl.mm", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 ":web_bundle", | 477 ":web_bundle", |
| 474 ":web_ui_bundle", | 478 ":web_ui_bundle", |
| 475 ] | 479 ] |
| 476 | 480 |
| 477 sources = [ | 481 sources = [ |
| 478 "web_state/js/resources/plugin_placeholder.js", | 482 "web_state/js/resources/plugin_placeholder.js", |
| 479 "web_state/js/resources/post_request.js", | 483 "web_state/js/resources/post_request.js", |
| 480 "web_state/js/resources/window_id.js", | 484 "web_state/js/resources/window_id.js", |
| 481 ] | 485 ] |
| 482 } | 486 } |
| OLD | NEW |