| 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/web/js_compile.gni") | 5 import("//ios/web/js_compile.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 import("//tools/grit/grit_rule.gni") | 7 import("//tools/grit/grit_rule.gni") |
| 8 | 8 |
| 9 source_set("web") { | 9 source_set("web") { |
| 10 deps = [ | 10 deps = [ |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 "public/test/web_test_with_web_state.h", | 363 "public/test/web_test_with_web_state.h", |
| 364 "public/test/web_test_with_web_state.mm", | 364 "public/test/web_test_with_web_state.mm", |
| 365 "test/crw_fake_web_controller_observer.h", | 365 "test/crw_fake_web_controller_observer.h", |
| 366 "test/crw_fake_web_controller_observer.mm", | 366 "test/crw_fake_web_controller_observer.mm", |
| 367 "test/test_url_constants.cc", | 367 "test/test_url_constants.cc", |
| 368 "test/test_url_constants.h", | 368 "test/test_url_constants.h", |
| 369 "test/test_web_thread.cc", | 369 "test/test_web_thread.cc", |
| 370 "test/test_web_thread_bundle.cc", | 370 "test/test_web_thread_bundle.cc", |
| 371 "test/web_int_test.h", | 371 "test/web_int_test.h", |
| 372 "test/web_int_test.mm", | 372 "test/web_int_test.mm", |
| 373 "test/web_test.h", | |
| 374 "test/web_test_suite.h", | 373 "test/web_test_suite.h", |
| 375 "test/web_test_suite.mm", | 374 "test/web_test_suite.mm", |
| 376 "test/web_test_with_web_controller.h", | 375 "test/web_test_with_web_controller.h", |
| 377 "test/web_test_with_web_controller.mm", | 376 "test/web_test_with_web_controller.mm", |
| 378 "test/wk_web_view_crash_utils.h", | 377 "test/wk_web_view_crash_utils.h", |
| 379 "test/wk_web_view_crash_utils.mm", | 378 "test/wk_web_view_crash_utils.mm", |
| 380 ] | 379 ] |
| 381 } | 380 } |
| 382 | 381 |
| 383 source_set("run_all_unittests") { | 382 source_set("run_all_unittests") { |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 } | 550 } |
| 552 | 551 |
| 553 grit("resources") { | 552 grit("resources") { |
| 554 source = "ios_web_resources.grd" | 553 source = "ios_web_resources.grd" |
| 555 use_qualified_include = true | 554 use_qualified_include = true |
| 556 outputs = [ | 555 outputs = [ |
| 557 "grit/ios_web_resources.h", | 556 "grit/ios_web_resources.h", |
| 558 "ios_web_resources.pak", | 557 "ios_web_resources.pak", |
| 559 ] | 558 ] |
| 560 } | 559 } |
| OLD | NEW |