| 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("//build_overrides/v8.gni") | 5 import("//build_overrides/v8.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 import("//tools/grit/repack.gni") | 9 import("//tools/grit/repack.gni") |
| 10 | 10 |
| 11 if (is_android) { | 11 if (is_android) { |
| 12 import("//build/config/android/rules.gni") | 12 import("//build/config/android/rules.gni") |
| 13 import("//mojo/generate_mojo_shell_assets_list.gni") | |
| 14 } | 13 } |
| 15 | 14 |
| 16 grit("html_viewer_resources_grit") { | 15 grit("html_viewer_resources_grit") { |
| 17 source = "html_viewer_resources.grd" | 16 source = "html_viewer_resources.grd" |
| 18 outputs = [ | 17 outputs = [ |
| 19 "grit/html_viewer_resources.h", | 18 "grit/html_viewer_resources.h", |
| 20 "html_viewer_resources.pak", | 19 "html_viewer_resources.pak", |
| 21 ] | 20 ] |
| 22 } | 21 } |
| 23 | 22 |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 ] | 362 ] |
| 364 | 363 |
| 365 data_deps = [ | 364 data_deps = [ |
| 366 ":html_viewer", | 365 ":html_viewer", |
| 367 ] | 366 ] |
| 368 | 367 |
| 369 if (is_linux && !is_android) { | 368 if (is_linux && !is_android) { |
| 370 data_deps += [ "//components/font_service" ] | 369 data_deps += [ "//components/font_service" ] |
| 371 } | 370 } |
| 372 } | 371 } |
| OLD | NEW |