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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 "public/test/response_providers/html_response_provider_impl.h", | 343 "public/test/response_providers/html_response_provider_impl.h", |
344 "public/test/response_providers/html_response_provider_impl.mm", | 344 "public/test/response_providers/html_response_provider_impl.mm", |
345 "public/test/response_providers/response_provider.h", | 345 "public/test/response_providers/response_provider.h", |
346 "public/test/response_providers/response_provider.mm", | 346 "public/test/response_providers/response_provider.mm", |
347 "public/test/response_providers/string_response_provider.h", | 347 "public/test/response_providers/string_response_provider.h", |
348 "public/test/response_providers/string_response_provider.mm", | 348 "public/test/response_providers/string_response_provider.mm", |
349 "public/test/scoped_testing_web_client.h", | 349 "public/test/scoped_testing_web_client.h", |
350 "public/test/scoped_testing_web_client.mm", | 350 "public/test/scoped_testing_web_client.mm", |
351 "public/test/test_browser_state.cc", | 351 "public/test/test_browser_state.cc", |
352 "public/test/test_browser_state.h", | 352 "public/test/test_browser_state.h", |
| 353 "public/test/test_redirect_observer.h", |
| 354 "public/test/test_redirect_observer.mm", |
353 "public/test/test_web_client.h", | 355 "public/test/test_web_client.h", |
354 "public/test/test_web_client.mm", | 356 "public/test/test_web_client.mm", |
355 "public/test/test_web_state.h", | 357 "public/test/test_web_state.h", |
356 "public/test/test_web_state.mm", | 358 "public/test/test_web_state.mm", |
357 "public/test/test_web_thread.h", | 359 "public/test/test_web_thread.h", |
358 "public/test/test_web_thread_bundle.h", | 360 "public/test/test_web_thread_bundle.h", |
359 "public/test/test_web_view_content_view.h", | 361 "public/test/test_web_view_content_view.h", |
360 "public/test/test_web_view_content_view.mm", | 362 "public/test/test_web_view_content_view.mm", |
361 "public/test/web_test.h", | 363 "public/test/web_test.h", |
362 "public/test/web_test.mm", | 364 "public/test/web_test.mm", |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 } | 552 } |
551 | 553 |
552 grit("resources") { | 554 grit("resources") { |
553 source = "ios_web_resources.grd" | 555 source = "ios_web_resources.grd" |
554 use_qualified_include = true | 556 use_qualified_include = true |
555 outputs = [ | 557 outputs = [ |
556 "grit/ios_web_resources.h", | 558 "grit/ios_web_resources.h", |
557 "ios_web_resources.pak", | 559 "ios_web_resources.pak", |
558 ] | 560 ] |
559 } | 561 } |
OLD | NEW |