| 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") { | 10 source_set("web") { |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 "public/test/web_test_with_web_state.h", | 367 "public/test/web_test_with_web_state.h", |
| 368 "public/test/web_test_with_web_state.mm", | 368 "public/test/web_test_with_web_state.mm", |
| 369 "test/crw_fake_web_controller_observer.h", | 369 "test/crw_fake_web_controller_observer.h", |
| 370 "test/crw_fake_web_controller_observer.mm", | 370 "test/crw_fake_web_controller_observer.mm", |
| 371 "test/test_url_constants.cc", | 371 "test/test_url_constants.cc", |
| 372 "test/test_url_constants.h", | 372 "test/test_url_constants.h", |
| 373 "test/test_web_thread.cc", | 373 "test/test_web_thread.cc", |
| 374 "test/test_web_thread_bundle.cc", | 374 "test/test_web_thread_bundle.cc", |
| 375 "test/web_int_test.h", | 375 "test/web_int_test.h", |
| 376 "test/web_int_test.mm", | 376 "test/web_int_test.mm", |
| 377 "test/web_test_suite.h", | |
| 378 "test/web_test_suite.mm", | 377 "test/web_test_suite.mm", |
| 379 "test/web_test_with_web_controller.h", | 378 "test/web_test_with_web_controller.h", |
| 380 "test/web_test_with_web_controller.mm", | 379 "test/web_test_with_web_controller.mm", |
| 381 "test/wk_web_view_crash_utils.h", | 380 "test/wk_web_view_crash_utils.h", |
| 382 "test/wk_web_view_crash_utils.mm", | 381 "test/wk_web_view_crash_utils.mm", |
| 383 ] | 382 ] |
| 384 } | 383 } |
| 385 | 384 |
| 386 source_set("run_all_unittests") { | 385 source_set("run_all_unittests") { |
| 387 testonly = true | 386 testonly = true |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 } | 557 } |
| 559 | 558 |
| 560 grit("resources") { | 559 grit("resources") { |
| 561 source = "ios_web_resources.grd" | 560 source = "ios_web_resources.grd" |
| 562 use_qualified_include = true | 561 use_qualified_include = true |
| 563 outputs = [ | 562 outputs = [ |
| 564 "grit/ios_web_resources.h", | 563 "grit/ios_web_resources.h", |
| 565 "ios_web_resources.pak", | 564 "ios_web_resources.pak", |
| 566 ] | 565 ] |
| 567 } | 566 } |
| OLD | NEW |