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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "url_response_disk_cache_apptest.cc", | 75 "url_response_disk_cache_apptest.cc", |
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/interfaces:interfaces", |
86 "//mojo/services/url_response_disk_cache/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 = [ |
(...skipping 35 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 |