| 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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 "test/crw_fake_web_controller_observer.h", | 332 "test/crw_fake_web_controller_observer.h", |
| 333 "test/crw_fake_web_controller_observer.mm", | 333 "test/crw_fake_web_controller_observer.mm", |
| 334 "test/test_url_constants.cc", | 334 "test/test_url_constants.cc", |
| 335 "test/test_url_constants.h", | 335 "test/test_url_constants.h", |
| 336 "test/test_web_thread.cc", | 336 "test/test_web_thread.cc", |
| 337 "test/test_web_thread_bundle.cc", | 337 "test/test_web_thread_bundle.cc", |
| 338 "test/web_int_test.h", | 338 "test/web_int_test.h", |
| 339 "test/web_int_test.mm", | 339 "test/web_int_test.mm", |
| 340 "test/web_test.h", | 340 "test/web_test.h", |
| 341 "test/web_test.mm", | 341 "test/web_test.mm", |
| 342 "test/web_test_suite.cc", | |
| 343 "test/web_test_suite.h", | 342 "test/web_test_suite.h", |
| 343 "test/web_test_suite.mm", |
| 344 "test/wk_web_view_crash_utils.h", | 344 "test/wk_web_view_crash_utils.h", |
| 345 "test/wk_web_view_crash_utils.mm", | 345 "test/wk_web_view_crash_utils.mm", |
| 346 ] | 346 ] |
| 347 } | 347 } |
| 348 | 348 |
| 349 bundle_data("ios_web_unittests_bundle_data") { | 349 bundle_data("ios_web_unittests_bundle_data") { |
| 350 testonly = true | 350 testonly = true |
| 351 sources = [ | 351 sources = [ |
| 352 "test/data/chrome.html", | 352 "test/data/chrome.html", |
| 353 "test/data/testbadpass.pkpass", | 353 "test/data/testbadpass.pkpass", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 483 ":web_bundle", | 483 ":web_bundle", |
| 484 ":web_ui_bundle", | 484 ":web_ui_bundle", |
| 485 ] | 485 ] |
| 486 | 486 |
| 487 sources = [ | 487 sources = [ |
| 488 "web_state/js/resources/plugin_placeholder.js", | 488 "web_state/js/resources/plugin_placeholder.js", |
| 489 "web_state/js/resources/post_request.js", | 489 "web_state/js/resources/post_request.js", |
| 490 "web_state/js/resources/window_id.js", | 490 "web_state/js/resources/window_id.js", |
| 491 ] | 491 ] |
| 492 } | 492 } |
| OLD | NEW |