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/module_args/v8.gni") | 5 import("//build/module_args/v8.gni") |
| 6 import("//mojo/mojo_application_package.gni") |
6 import("//mojo/public/mojo_application.gni") | 7 import("//mojo/public/mojo_application.gni") |
7 import("//testing/test.gni") | 8 import("//testing/test.gni") |
8 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
9 import("//tools/grit/repack.gni") | 10 import("//tools/grit/repack.gni") |
10 | 11 |
11 # Repack this here. | 12 # Repack this here. |
12 repack("unified_blink_resources") { | 13 repack("unified_blink_resources") { |
13 sources = [ | 14 sources = [ |
14 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, | 15 "$root_gen_dir/blink/public/resources/blink_image_resources_100_percent.pak"
, |
15 "$root_gen_dir/blink/public/resources/blink_resources.pak", | 16 "$root_gen_dir/blink/public/resources/blink_resources.pak", |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 if (is_win) { | 161 if (is_win) { |
161 sources += [ "html_viewer_version.rc" ] | 162 sources += [ "html_viewer_version.rc" ] |
162 } | 163 } |
163 | 164 |
164 data_deps = [ | 165 data_deps = [ |
165 "//components/clipboard", | 166 "//components/clipboard", |
166 "//components/view_manager", | 167 "//components/view_manager", |
167 ] | 168 ] |
168 } | 169 } |
169 | 170 |
170 mojo_native_application("html_viewer") { | 171 mojo_application_package("html_viewer") { |
171 sources = [ | 172 sources = [ |
172 "html_viewer.cc", | 173 "html_viewer.cc", |
173 "ui_setup.h", | 174 "ui_setup.h", |
174 "ui_setup_android.cc", | 175 "ui_setup_android.cc", |
175 "ui_setup_android.h", | 176 "ui_setup_android.h", |
176 ] | 177 ] |
177 deps = [ | 178 deps = [ |
178 ":html_viewer_resources_grit", | 179 ":html_viewer_resources_grit", |
179 ":lib", | 180 ":lib", |
180 "//mojo/common", | 181 "//mojo/common", |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 "//base", | 226 "//base", |
226 "//mojo/application/public/cpp:test_support", | 227 "//mojo/application/public/cpp:test_support", |
227 "//net:test_support", | 228 "//net:test_support", |
228 "//testing/gtest", | 229 "//testing/gtest", |
229 "//third_party/mojo_services/src/accessibility/public/interfaces", | 230 "//third_party/mojo_services/src/accessibility/public/interfaces", |
230 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 231 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
231 ] | 232 ] |
232 | 233 |
233 data_deps = [ ":html_viewer" ] | 234 data_deps = [ ":html_viewer" ] |
234 } | 235 } |
OLD | NEW |