| 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("//build/module_args/mojo.gni") | 5 import("//build/module_args/mojo.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
| 8 import("//mojo/tools/embed/rules.gni") | 8 import("//mojo/tools/embed/rules.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 ":bindings", | 30 ":bindings", |
| 31 ":url_response_disk_cache_db", | 31 ":url_response_disk_cache_db", |
| 32 "//base", | 32 "//base", |
| 33 "//crypto", | 33 "//crypto", |
| 34 "//mojo/application", | 34 "//mojo/application", |
| 35 "//mojo/data_pipe_utils", | 35 "//mojo/data_pipe_utils", |
| 36 "//mojo/environment:chromium", | 36 "//mojo/environment:chromium", |
| 37 "//mojo/public/cpp/application", | 37 "//mojo/public/cpp/application", |
| 38 "//mojo/public/cpp/system", | 38 "//mojo/public/cpp/system", |
| 39 "//mojo/public/interfaces/network", | 39 "//mojo/public/interfaces/network", |
| 40 "//mojo/services/url_response_disk_cache/public/interfaces", | 40 "//mojo/services/url_response_disk_cache/interfaces", |
| 41 "//third_party/zlib:zip", | 41 "//third_party/zlib:zip", |
| 42 "//url:url", | 42 "//url:url", |
| 43 ] | 43 ] |
| 44 } | 44 } |
| 45 | 45 |
| 46 source_set("url_response_disk_cache_db") { | 46 source_set("url_response_disk_cache_db") { |
| 47 sources = [ | 47 sources = [ |
| 48 "url_response_disk_cache_db.cc", | 48 "url_response_disk_cache_db.cc", |
| 49 "url_response_disk_cache_db.h", | 49 "url_response_disk_cache_db.h", |
| 50 ] | 50 ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 76 ] | 76 ] |
| 77 | 77 |
| 78 deps = [ | 78 deps = [ |
| 79 ":embed_test_data", | 79 ":embed_test_data", |
| 80 "//base", | 80 "//base", |
| 81 "//mojo/application", | 81 "//mojo/application", |
| 82 "//mojo/application:test_support", | 82 "//mojo/application:test_support", |
| 83 "//mojo/public/cpp/bindings", | 83 "//mojo/public/cpp/bindings", |
| 84 "//mojo/public/cpp/system:system", | 84 "//mojo/public/cpp/system:system", |
| 85 "//mojo/services/network/public/interfaces:interfaces", | 85 "//mojo/services/network/public/interfaces:interfaces", |
| 86 "//mojo/services/url_response_disk_cache/public/interfaces", | 86 "//mojo/services/url_response_disk_cache/interfaces", |
| 87 ] | 87 ] |
| 88 | 88 |
| 89 data_deps = [ ":url_response_disk_cache" ] | 89 data_deps = [ ":url_response_disk_cache" ] |
| 90 } | 90 } |
| 91 | 91 |
| 92 test("unittests") { | 92 test("unittests") { |
| 93 output_name = "url_response_disk_cache_unittests" | 93 output_name = "url_response_disk_cache_unittests" |
| 94 | 94 |
| 95 sources = [ | 95 sources = [ |
| 96 "url_response_disk_cache_db_unittests.cc", | 96 "url_response_disk_cache_db_unittests.cc", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 embed_file("embed_test_data") { | 132 embed_file("embed_test_data") { |
| 133 source = "$target_out_dir/test_data.zip" | 133 source = "$target_out_dir/test_data.zip" |
| 134 namespace = "mojo" | 134 namespace = "mojo" |
| 135 variable = "kTestData" | 135 variable = "kTestData" |
| 136 | 136 |
| 137 deps = [ | 137 deps = [ |
| 138 ":test_data", | 138 ":test_data", |
| 139 ] | 139 ] |
| 140 } | 140 } |
| OLD | NEW |