| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 "public/test/http_server.h", | 335 "public/test/http_server.h", |
| 336 "public/test/http_server.mm", | 336 "public/test/http_server.mm", |
| 337 "public/test/http_server_util.h", | 337 "public/test/http_server_util.h", |
| 338 "public/test/http_server_util.mm", | 338 "public/test/http_server_util.mm", |
| 339 "public/test/js_test_util.h", | 339 "public/test/js_test_util.h", |
| 340 "public/test/js_test_util.mm", | 340 "public/test/js_test_util.mm", |
| 341 "public/test/navigation_test_util.h", | 341 "public/test/navigation_test_util.h", |
| 342 "public/test/navigation_test_util.mm", | 342 "public/test/navigation_test_util.mm", |
| 343 "public/test/response_providers/data_response_provider.h", | 343 "public/test/response_providers/data_response_provider.h", |
| 344 "public/test/response_providers/data_response_provider.mm", | 344 "public/test/response_providers/data_response_provider.mm", |
| 345 "public/test/response_providers/error_page_response_provider.h", |
| 346 "public/test/response_providers/error_page_response_provider.mm", |
| 345 "public/test/response_providers/file_based_response_provider.h", | 347 "public/test/response_providers/file_based_response_provider.h", |
| 346 "public/test/response_providers/file_based_response_provider.mm", | 348 "public/test/response_providers/file_based_response_provider.mm", |
| 347 "public/test/response_providers/file_based_response_provider_impl.h", | 349 "public/test/response_providers/file_based_response_provider_impl.h", |
| 348 "public/test/response_providers/file_based_response_provider_impl.mm", | 350 "public/test/response_providers/file_based_response_provider_impl.mm", |
| 349 "public/test/response_providers/html_response_provider.h", | 351 "public/test/response_providers/html_response_provider.h", |
| 350 "public/test/response_providers/html_response_provider.mm", | 352 "public/test/response_providers/html_response_provider.mm", |
| 351 "public/test/response_providers/html_response_provider_impl.h", | 353 "public/test/response_providers/html_response_provider_impl.h", |
| 352 "public/test/response_providers/html_response_provider_impl.mm", | 354 "public/test/response_providers/html_response_provider_impl.mm", |
| 353 "public/test/response_providers/response_provider.h", | 355 "public/test/response_providers/response_provider.h", |
| 354 "public/test/response_providers/response_provider.mm", | 356 "public/test/response_providers/response_provider.mm", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 } | 567 } |
| 566 | 568 |
| 567 grit("resources") { | 569 grit("resources") { |
| 568 source = "ios_web_resources.grd" | 570 source = "ios_web_resources.grd" |
| 569 use_qualified_include = true | 571 use_qualified_include = true |
| 570 outputs = [ | 572 outputs = [ |
| 571 "grit/ios_web_resources.h", | 573 "grit/ios_web_resources.h", |
| 572 "ios_web_resources.pak", | 574 "ios_web_resources.pak", |
| 573 ] | 575 ] |
| 574 } | 576 } |
| OLD | NEW |