| 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("//mojo/public/mojo.gni") | 5 import("//mojo/public/mojo.gni") |
| 6 import("//mojo/public/mojo_application.gni") | 6 import("//mojo/public/mojo_application.gni") |
| 7 | 7 |
| 8 # GYP version: mojo/mojo_services.gypi:html_viewer | 8 # GYP version: mojo/mojo_services.gypi:html_viewer |
| 9 mojo_native_application("html_viewer") { | 9 mojo_native_application("html_viewer") { |
| 10 sources = [ | 10 sources = [ |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "//mojo/services/public/interfaces/input_events:input_events", | 68 "//mojo/services/public/interfaces/input_events:input_events", |
| 69 "//mojo/services/public/interfaces/navigation", | 69 "//mojo/services/public/interfaces/navigation", |
| 70 "//mojo/services/public/interfaces/network", | 70 "//mojo/services/public/interfaces/network", |
| 71 "//mojo/services/public/interfaces/surfaces", | 71 "//mojo/services/public/interfaces/surfaces", |
| 72 "//net", | 72 "//net", |
| 73 "//skia", | 73 "//skia", |
| 74 "//third_party/WebKit/public:blink", | 74 "//third_party/WebKit/public:blink", |
| 75 "//ui/native_theme", | 75 "//ui/native_theme", |
| 76 "//url", | 76 "//url", |
| 77 ] | 77 ] |
| 78 | |
| 79 if (use_prebuilt_mojo_shell) { | |
| 80 datadeps = [ "//mojo/public/tools:copy_mojo_shell" ] | |
| 81 } | |
| 82 } | 78 } |
| OLD | NEW |