| 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 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 "public/test/test_browser_state.cc", | 352 "public/test/test_browser_state.cc", |
| 353 "public/test/test_browser_state.h", | 353 "public/test/test_browser_state.h", |
| 354 "public/test/test_web_client.h", | 354 "public/test/test_web_client.h", |
| 355 "public/test/test_web_client.mm", | 355 "public/test/test_web_client.mm", |
| 356 "public/test/test_web_state.h", | 356 "public/test/test_web_state.h", |
| 357 "public/test/test_web_state.mm", | 357 "public/test/test_web_state.mm", |
| 358 "public/test/test_web_thread.h", | 358 "public/test/test_web_thread.h", |
| 359 "public/test/test_web_thread_bundle.h", | 359 "public/test/test_web_thread_bundle.h", |
| 360 "public/test/test_web_view_content_view.h", | 360 "public/test/test_web_view_content_view.h", |
| 361 "public/test/test_web_view_content_view.mm", | 361 "public/test/test_web_view_content_view.mm", |
| 362 "public/test/web_test.h", |
| 363 "public/test/web_test.mm", |
| 364 "public/test/web_test_with_web_state.h", |
| 365 "public/test/web_test_with_web_state.mm", |
| 362 "test/crw_fake_web_controller_observer.h", | 366 "test/crw_fake_web_controller_observer.h", |
| 363 "test/crw_fake_web_controller_observer.mm", | 367 "test/crw_fake_web_controller_observer.mm", |
| 364 "test/test_url_constants.cc", | 368 "test/test_url_constants.cc", |
| 365 "test/test_url_constants.h", | 369 "test/test_url_constants.h", |
| 366 "test/test_web_thread.cc", | 370 "test/test_web_thread.cc", |
| 367 "test/test_web_thread_bundle.cc", | 371 "test/test_web_thread_bundle.cc", |
| 368 "test/web_int_test.h", | 372 "test/web_int_test.h", |
| 369 "test/web_int_test.mm", | 373 "test/web_int_test.mm", |
| 370 "test/web_test.h", | 374 "test/web_test.h", |
| 371 "test/web_test.mm", | |
| 372 "test/web_test_suite.h", | 375 "test/web_test_suite.h", |
| 373 "test/web_test_suite.mm", | 376 "test/web_test_suite.mm", |
| 377 "test/web_test_with_web_controller.h", |
| 378 "test/web_test_with_web_controller.mm", |
| 374 "test/wk_web_view_crash_utils.h", | 379 "test/wk_web_view_crash_utils.h", |
| 375 "test/wk_web_view_crash_utils.mm", | 380 "test/wk_web_view_crash_utils.mm", |
| 376 ] | 381 ] |
| 377 } | 382 } |
| 378 | 383 |
| 379 source_set("run_all_unittests") { | 384 source_set("run_all_unittests") { |
| 380 testonly = true | 385 testonly = true |
| 381 sources = [ | 386 sources = [ |
| 382 "test/run_all_unittests.cc", | 387 "test/run_all_unittests.cc", |
| 383 ] | 388 ] |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 } | 553 } |
| 549 | 554 |
| 550 grit("resources") { | 555 grit("resources") { |
| 551 source = "ios_web_resources.grd" | 556 source = "ios_web_resources.grd" |
| 552 use_qualified_include = true | 557 use_qualified_include = true |
| 553 outputs = [ | 558 outputs = [ |
| 554 "grit/ios_web_resources.h", | 559 "grit/ios_web_resources.h", |
| 555 "ios_web_resources.pak", | 560 "ios_web_resources.pak", |
| 556 ] | 561 ] |
| 557 } | 562 } |
| OLD | NEW |