| 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/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 |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 if (is_win) { | 206 if (is_win) { |
| 207 sources += [ "html_viewer_version.rc" ] | 207 sources += [ "html_viewer_version.rc" ] |
| 208 } | 208 } |
| 209 | 209 |
| 210 if (is_linux && !is_android) { | 210 if (is_linux && !is_android) { |
| 211 deps += [ "//components/font_service/public/cpp" ] | 211 deps += [ "//components/font_service/public/cpp" ] |
| 212 } | 212 } |
| 213 | 213 |
| 214 data_deps = [ | 214 data_deps = [ |
| 215 "//components/clipboard", | 215 "//components/clipboard", |
| 216 "//components/mus", | 216 "//components/mus/vm:lib", |
| 217 "//mojo/services/network:network", | 217 "//mojo/services/network:network", |
| 218 "//mojo/services/tracing", | 218 "//mojo/services/tracing", |
| 219 ] | 219 ] |
| 220 } | 220 } |
| 221 | 221 |
| 222 mojo_native_application("html_viewer") { | 222 mojo_native_application("html_viewer") { |
| 223 sources = [ | 223 sources = [ |
| 224 "html_viewer_main.cc", | 224 "html_viewer_main.cc", |
| 225 ] | 225 ] |
| 226 deps = [ | 226 deps = [ |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 "//mojo/application/public/cpp:sources", | 352 "//mojo/application/public/cpp:sources", |
| 353 "//mojo/application/public/cpp:test_support", | 353 "//mojo/application/public/cpp:test_support", |
| 354 "//net:test_support", | 354 "//net:test_support", |
| 355 "//testing/gtest", | 355 "//testing/gtest", |
| 356 "//third_party/mojo_services/src/accessibility/public/interfaces", | 356 "//third_party/mojo_services/src/accessibility/public/interfaces", |
| 357 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 357 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", |
| 358 ] | 358 ] |
| 359 | 359 |
| 360 data_deps = [ | 360 data_deps = [ |
| 361 ":html_viewer", | 361 ":html_viewer", |
| 362 "//components/mus", | 362 "//components/mus/vm:lib", |
| 363 ] | 363 ] |
| 364 | 364 |
| 365 if (is_linux && !is_android) { | 365 if (is_linux && !is_android) { |
| 366 data_deps += [ "//components/font_service" ] | 366 data_deps += [ "//components/font_service" ] |
| 367 } | 367 } |
| 368 } | 368 } |
| OLD | NEW |