OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 import("//third_party/mojo/src/mojo/public/mojo.gni") | 6 import("//third_party/mojo/src/mojo/public/mojo.gni") |
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") | 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") |
8 | 8 |
9 action("generate_blink_resource_map") { | 9 action("generate_blink_resource_map") { |
10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" | 10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" |
11 args = [ | 11 args = [ |
12 "--pak-file", | 12 "--pak-file", |
13 rebase_path("$root_out_dir/gen/blink/public/resources/blink_resources.pak"), | 13 rebase_path( |
| 14 "$root_out_dir/gen/blink/public/resources/blink_resources_100_percent.pa
k"), |
14 "--header", | 15 "--header", |
15 rebase_path("$target_gen_dir/blink_resource_map.h"), | 16 rebase_path("$target_gen_dir/blink_resource_map.h"), |
16 "--cpp", | 17 "--cpp", |
17 rebase_path("$target_gen_dir/blink_resource_map.cc"), | 18 rebase_path("$target_gen_dir/blink_resource_map.cc"), |
18 ] | 19 ] |
19 outputs = [ | 20 outputs = [ |
20 "$target_gen_dir/blink_resource_map.cc", | 21 "$target_gen_dir/blink_resource_map.cc", |
21 "$target_gen_dir/blink_resource_map.h", | 22 "$target_gen_dir/blink_resource_map.h", |
22 ] | 23 ] |
23 public_deps = [ | 24 public_deps = [ |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 output_name = "html_viewer_unittests" | 179 output_name = "html_viewer_unittests" |
179 sources = [ | 180 sources = [ |
180 "ax_provider_impl_unittest.cc", | 181 "ax_provider_impl_unittest.cc", |
181 "discardable_memory_allocator_unittest.cc", | 182 "discardable_memory_allocator_unittest.cc", |
182 ] | 183 ] |
183 deps = [ | 184 deps = [ |
184 ":lib", | 185 ":lib", |
185 "//base/test:run_all_unittests", | 186 "//base/test:run_all_unittests", |
186 ] | 187 ] |
187 } | 188 } |
OLD | NEW |