Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1058)

Side by Side Diff: mojo/services/html_viewer/BUILD.gn

Issue 563953003: GN rules for everything in //mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//mojo/system.gni")
6
7 # GYP version: mojo/mojo_services.gypi:mojo_html_viewer
8 shared_library("html_viewer") {
9 output_name = "mojo_html_viewer"
10
11 sources = [
12 "blink_basic_type_converters.cc",
13 "blink_basic_type_converters.h",
14 "blink_input_events_type_converters.cc",
15 "blink_input_events_type_converters.h",
16 "blink_platform_impl.cc",
17 "blink_platform_impl.h",
18 "blink_url_request_type_converters.cc",
19 "blink_url_request_type_converters.h",
20 "html_viewer.cc",
21 "html_document_view.cc",
22 "html_document_view.h",
23 "webcookiejar_impl.cc",
24 "webcookiejar_impl.h",
25 "webmimeregistry_impl.cc",
26 "webmimeregistry_impl.h",
27 "websockethandle_impl.cc",
28 "websockethandle_impl.h",
29 "webstoragenamespace_impl.cc",
30 "webstoragenamespace_impl.h",
31 "webthemeengine_impl.cc",
32 "webthemeengine_impl.h",
33 "webthread_impl.cc",
34 "webthread_impl.h",
35 "weburlloader_impl.cc",
36 "weburlloader_impl.h",
37 "weblayertreeview_impl.cc",
38 "weblayertreeview_impl.h",
39 ]
40
41 include_dirs = [ "third_party/WebKit" ]
42
43 deps = [
44 "//cc",
45 "//cc/blink",
46 "//cc/surfaces",
47 "//mojo/cc",
48 "//mojo/common",
49 "//mojo/public/cpp/application:chromium",
50 "//mojo/public/cpp/bindings",
51 "//mojo/public/cpp/utility",
52 "//mojo/services/public/cpp/view_manager",
53 "//mojo/services/public/interfaces/content_handler",
54 "//mojo/services/public/interfaces/gpu",
55 "//mojo/services/public/interfaces/navigation",
56 "//mojo/services/public/interfaces/network",
57 "//mojo/services/public/interfaces/surfaces",
58 "//net",
59 "//skia",
60 "//third_party/WebKit/public:blink",
61 "//ui/native_theme",
62 "//url",
63 ] + mojo_system_for_shared_library
64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698