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

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

Issue 739413004: Wire up Sky directly to Ganesh (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: rebaes Created 6 years, 1 month 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/document_view.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
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 "//mojo/public/interfaces/application", 62 "//mojo/public/interfaces/application",
63 "//mojo/services/public/cpp/view_manager", 63 "//mojo/services/public/cpp/view_manager",
64 "//mojo/services/public/interfaces/content_handler", 64 "//mojo/services/public/interfaces/content_handler",
65 "//mojo/services/public/interfaces/gpu", 65 "//mojo/services/public/interfaces/gpu",
66 "//mojo/services/public/interfaces/input_events", 66 "//mojo/services/public/interfaces/input_events",
67 "//mojo/services/public/interfaces/navigation", 67 "//mojo/services/public/interfaces/navigation",
68 "//mojo/services/public/interfaces/network", 68 "//mojo/services/public/interfaces/network",
69 "//mojo/services/public/interfaces/surfaces", 69 "//mojo/services/public/interfaces/surfaces",
70 "//net", 70 "//net",
71 "//skia", 71 "//skia",
72 "//sky/compositor",
72 "//sky/engine", 73 "//sky/engine",
73 "//sky/engine/v8_inspector", 74 "//sky/engine/v8_inspector",
74 "//sky/scheduler",
75 "//sky/services/inspector:bindings", 75 "//sky/services/inspector:bindings",
76 "//sky/services/testing:bindings", 76 "//sky/services/testing:bindings",
77 "//sky/viewer/cc", 77 "//sky/viewer/cc",
78 "//third_party/icu", 78 "//third_party/icu",
79 "//ui/native_theme", 79 "//ui/native_theme",
80 "//url", 80 "//url",
81 ] 81 ]
82 } 82 }
83 83
84 mojom("bindings") { 84 mojom("bindings") {
85 sources = [ 85 sources = [
86 "services/tracing.mojom", 86 "services/tracing.mojom",
87 "services/inspector.mojom", 87 "services/inspector.mojom",
88 ] 88 ]
89 } 89 }
90 90
91 copy("sky_modules") { 91 copy("sky_modules") {
92 sources = [ 92 sources = [
93 "script/core.sky", 93 "script/core.sky",
94 "script/support.sky", 94 "script/support.sky",
95 ] 95 ]
96 outputs = [ 96 outputs = [
97 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", 97 "$root_gen_dir/mojo/public/sky/{{source_file_part}}",
98 ] 98 ]
99 } 99 }
OLDNEW
« no previous file with comments | « no previous file | sky/viewer/document_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698