| 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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 ] | 100 ] |
| 101 | 101 |
| 102 deps = [ | 102 deps = [ |
| 103 ":url_response_disk_cache_db", | 103 ":url_response_disk_cache_db", |
| 104 "//base", | 104 "//base", |
| 105 "//base/test:run_all_unittests", | 105 "//base/test:run_all_unittests", |
| 106 "//base/test:test_support", | 106 "//base/test:test_support", |
| 107 "//mojo/environment:chromium", | 107 "//mojo/environment:chromium", |
| 108 "//mojo/public/cpp/bindings", | 108 "//mojo/public/cpp/bindings", |
| 109 "//mojo/public/cpp/system", | 109 "//mojo/public/cpp/system", |
| 110 "//mojo/public/platform/native:system", | 110 "//mojo/public/platform/native:system_thunks", |
| 111 "//testing/gtest", | 111 "//testing/gtest", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 action("test_data") { | 115 action("test_data") { |
| 116 script = "//mojo/public/tools/gn/zip.py" | 116 script = "//mojo/public/tools/gn/zip.py" |
| 117 inputs = [ | 117 inputs = [ |
| 118 "test_data/file1", | 118 "test_data/file1", |
| 119 "test_data/file2", | 119 "test_data/file2", |
| 120 ] | 120 ] |
| (...skipping 13 matching lines...) Expand all Loading... |
| 134 | 134 |
| 135 embed_file("embed_test_data") { | 135 embed_file("embed_test_data") { |
| 136 source = "$target_out_dir/test_data.zip" | 136 source = "$target_out_dir/test_data.zip" |
| 137 namespace = "mojo" | 137 namespace = "mojo" |
| 138 variable = "kTestData" | 138 variable = "kTestData" |
| 139 | 139 |
| 140 deps = [ | 140 deps = [ |
| 141 ":test_data", | 141 ":test_data", |
| 142 ] | 142 ] |
| 143 } | 143 } |
| OLD | NEW |