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

Side by Side Diff: sky/viewer/BUILD.gn

Issue 935633003: Don't depend on /net for error codes in sky viewer. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Address Adam comment. Created 5 years, 10 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
« no previous file with comments | « no previous file | sky/viewer/platform/net_constants.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_application.gni") 5 import("//mojo/public/mojo_application.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 7
8 mojo_native_application("viewer") { 8 mojo_native_application("viewer") {
9 output_name = "sky_viewer" 9 output_name = "sky_viewer"
10 10
11 sources = [ 11 sources = [
12 "content_handler_impl.cc", 12 "content_handler_impl.cc",
13 "content_handler_impl.h", 13 "content_handler_impl.h",
14 "converters/basic_types.cc", 14 "converters/basic_types.cc",
15 "converters/basic_types.h", 15 "converters/basic_types.h",
16 "converters/input_event_types.cc", 16 "converters/input_event_types.cc",
17 "converters/input_event_types.h", 17 "converters/input_event_types.h",
18 "converters/url_request_types.cc", 18 "converters/url_request_types.cc",
19 "converters/url_request_types.h", 19 "converters/url_request_types.h",
20 "document_view.cc", 20 "document_view.cc",
21 "document_view.h", 21 "document_view.h",
22 "internals.cc", 22 "internals.cc",
23 "internals.h", 23 "internals.h",
24 "platform/net_constants.h",
24 "platform/platform_impl.cc", 25 "platform/platform_impl.cc",
25 "platform/platform_impl.h", 26 "platform/platform_impl.h",
26 "platform/weburlloader_impl.cc", 27 "platform/weburlloader_impl.cc",
27 "platform/weburlloader_impl.h", 28 "platform/weburlloader_impl.h",
28 "runtime_flags.cc", 29 "runtime_flags.cc",
29 "runtime_flags.h", 30 "runtime_flags.h",
30 "viewer.cc", 31 "viewer.cc",
31 ] 32 ]
32 33
33 include_dirs = [ ".." ] 34 include_dirs = [ ".." ]
(...skipping 11 matching lines...) Expand all
45 "//mojo/public/cpp/system", 46 "//mojo/public/cpp/system",
46 "//mojo/public/cpp/utility", 47 "//mojo/public/cpp/utility",
47 "//mojo/public/interfaces/application", 48 "//mojo/public/interfaces/application",
48 "//mojo/services/content_handler/public/interfaces", 49 "//mojo/services/content_handler/public/interfaces",
49 "//mojo/services/gpu/public/interfaces", 50 "//mojo/services/gpu/public/interfaces",
50 "//mojo/services/input_events/public/interfaces", 51 "//mojo/services/input_events/public/interfaces",
51 "//mojo/services/navigation/public/interfaces", 52 "//mojo/services/navigation/public/interfaces",
52 "//mojo/services/network/public/interfaces", 53 "//mojo/services/network/public/interfaces",
53 "//mojo/services/surfaces/public/interfaces", 54 "//mojo/services/surfaces/public/interfaces",
54 "//mojo/services/view_manager/public/cpp", 55 "//mojo/services/view_manager/public/cpp",
55 "//net",
56 "//skia", 56 "//skia",
57 "//sky/compositor", 57 "//sky/compositor",
58 "//sky/engine", 58 "//sky/engine",
59 "//sky/engine/tonic", 59 "//sky/engine/tonic",
60 "//sky/services/inspector:bindings", 60 "//sky/services/inspector:bindings",
61 "//sky/services/testing:bindings", 61 "//sky/services/testing:bindings",
62 "//third_party/icu", 62 "//third_party/icu",
63 "//ui/events", 63 "//ui/events",
64 "//url", 64 "//url",
65 ] 65 ]
66 } 66 }
67 67
68 mojom("bindings") { 68 mojom("bindings") {
69 sources = [ 69 sources = [
70 "services/inspector.mojom", 70 "services/inspector.mojom",
71 ] 71 ]
72 } 72 }
OLDNEW
« no previous file with comments | « no previous file | sky/viewer/platform/net_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698