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/system.gni") | |
6 | |
7 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer | 5 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer |
8 shared_library("html_viewer") { | 6 shared_library("html_viewer") { |
9 output_name = "mojo_html_viewer" | 7 output_name = "mojo_html_viewer" |
10 | 8 |
11 sources = [ | 9 sources = [ |
12 "blink_basic_type_converters.cc", | 10 "blink_basic_type_converters.cc", |
13 "blink_basic_type_converters.h", | 11 "blink_basic_type_converters.h", |
14 "blink_input_events_type_converters.cc", | 12 "blink_input_events_type_converters.cc", |
15 "blink_input_events_type_converters.h", | 13 "blink_input_events_type_converters.h", |
16 "blink_platform_impl.cc", | 14 "blink_platform_impl.cc", |
(...skipping 27 matching lines...) Expand all Loading... |
44 | 42 |
45 deps = [ | 43 deps = [ |
46 "//cc", | 44 "//cc", |
47 "//cc/blink", | 45 "//cc/blink", |
48 "//cc/surfaces", | 46 "//cc/surfaces", |
49 "//media", | 47 "//media", |
50 "//media/blink", | 48 "//media/blink", |
51 "//mojo/cc", | 49 "//mojo/cc", |
52 "//mojo/common", | 50 "//mojo/common", |
53 "//mojo/application", | 51 "//mojo/application", |
| 52 "//mojo/public/c/system:for_shared_library", |
54 "//mojo/public/cpp/bindings", | 53 "//mojo/public/cpp/bindings", |
55 "//mojo/public/cpp/utility", | 54 "//mojo/public/cpp/utility", |
56 "//mojo/services/public/cpp/view_manager", | 55 "//mojo/services/public/cpp/view_manager", |
57 "//mojo/services/public/interfaces/content_handler", | 56 "//mojo/services/public/interfaces/content_handler", |
58 "//mojo/services/public/interfaces/gpu", | 57 "//mojo/services/public/interfaces/gpu", |
59 "//mojo/services/public/interfaces/navigation", | 58 "//mojo/services/public/interfaces/navigation", |
60 "//mojo/services/public/interfaces/network", | 59 "//mojo/services/public/interfaces/network", |
61 "//mojo/services/public/interfaces/surfaces", | 60 "//mojo/services/public/interfaces/surfaces", |
62 "//net", | 61 "//net", |
63 "//skia", | 62 "//skia", |
64 "//third_party/WebKit/public:blink", | 63 "//third_party/WebKit/public:blink", |
65 "//ui/native_theme", | 64 "//ui/native_theme", |
66 "//url", | 65 "//url", |
67 ] + mojo_system_for_shared_library | 66 ] |
68 } | 67 } |
OLD | NEW |