| 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 |
| 11 group("tests") { | 11 group("tests") { |
| 12 testonly = true | 12 testonly = true |
| 13 | 13 |
| 14 deps = [ | 14 deps = [ |
| 15 ":apptests", | 15 ":apptests", |
| 16 ":unittests", | 16 ":unittests", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 | 19 |
| 20 source_set("url_response_disk_cache") { | 20 source_set("url_response_disk_cache") { |
| 21 sources = [ | 21 sources = [ |
| 22 "url_response_disk_cache_app.cc", | 22 "url_response_disk_cache_app.cc", |
| 23 "url_response_disk_cache_app.h", | 23 "url_response_disk_cache_app.h", |
| 24 "url_response_disk_cache_delegate.h", |
| 24 "url_response_disk_cache_impl.cc", | 25 "url_response_disk_cache_impl.cc", |
| 25 "url_response_disk_cache_impl.h", | 26 "url_response_disk_cache_impl.h", |
| 26 ] | 27 ] |
| 27 | 28 |
| 28 deps = [ | 29 deps = [ |
| 29 ":bindings", | 30 ":bindings", |
| 30 ":url_response_disk_cache_db", | 31 ":url_response_disk_cache_db", |
| 31 "//base", | 32 "//base", |
| 32 "//crypto", | 33 "//crypto", |
| 33 "//mojo/application", | 34 "//mojo/application", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 | 131 |
| 131 embed_file("embed_test_data") { | 132 embed_file("embed_test_data") { |
| 132 source = "$target_out_dir/test_data.zip" | 133 source = "$target_out_dir/test_data.zip" |
| 133 namespace = "mojo" | 134 namespace = "mojo" |
| 134 variable = "kTestData" | 135 variable = "kTestData" |
| 135 | 136 |
| 136 deps = [ | 137 deps = [ |
| 137 ":test_data", | 138 ":test_data", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| OLD | NEW |