| 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_arc") { | 10 source_set("web_arc") { |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 | 366 |
| 367 sources = [ | 367 sources = [ |
| 368 "public/test/crw_test_js_injection_receiver.h", | 368 "public/test/crw_test_js_injection_receiver.h", |
| 369 "public/test/crw_test_js_injection_receiver.mm", | 369 "public/test/crw_test_js_injection_receiver.mm", |
| 370 "public/test/http_server.h", | 370 "public/test/http_server.h", |
| 371 "public/test/http_server.mm", | 371 "public/test/http_server.mm", |
| 372 "public/test/http_server_util.h", | 372 "public/test/http_server_util.h", |
| 373 "public/test/http_server_util.mm", | 373 "public/test/http_server_util.mm", |
| 374 "public/test/js_test_util.h", | 374 "public/test/js_test_util.h", |
| 375 "public/test/js_test_util.mm", | 375 "public/test/js_test_util.mm", |
| 376 "public/test/native_controller_test_util.h", |
| 377 "public/test/native_controller_test_util.mm", |
| 376 "public/test/navigation_test_util.h", | 378 "public/test/navigation_test_util.h", |
| 377 "public/test/navigation_test_util.mm", | 379 "public/test/navigation_test_util.mm", |
| 378 "public/test/response_providers/data_response_provider.h", | 380 "public/test/response_providers/data_response_provider.h", |
| 379 "public/test/response_providers/data_response_provider.mm", | 381 "public/test/response_providers/data_response_provider.mm", |
| 380 "public/test/response_providers/error_page_response_provider.h", | 382 "public/test/response_providers/error_page_response_provider.h", |
| 381 "public/test/response_providers/error_page_response_provider.mm", | 383 "public/test/response_providers/error_page_response_provider.mm", |
| 382 "public/test/response_providers/file_based_response_provider.h", | 384 "public/test/response_providers/file_based_response_provider.h", |
| 383 "public/test/response_providers/file_based_response_provider.mm", | 385 "public/test/response_providers/file_based_response_provider.mm", |
| 384 "public/test/response_providers/file_based_response_provider_impl.h", | 386 "public/test/response_providers/file_based_response_provider_impl.h", |
| 385 "public/test/response_providers/file_based_response_provider_impl.mm", | 387 "public/test/response_providers/file_based_response_provider_impl.mm", |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 } | 604 } |
| 603 | 605 |
| 604 grit("resources") { | 606 grit("resources") { |
| 605 source = "ios_web_resources.grd" | 607 source = "ios_web_resources.grd" |
| 606 use_qualified_include = true | 608 use_qualified_include = true |
| 607 outputs = [ | 609 outputs = [ |
| 608 "grit/ios_web_resources.h", | 610 "grit/ios_web_resources.h", |
| 609 "ios_web_resources.pak", | 611 "ios_web_resources.pak", |
| 610 ] | 612 ] |
| 611 } | 613 } |
| OLD | NEW |