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

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

Issue 697723003: Switch "html" Mojo modules to the Sky module system (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 | « sky/tests/services/network.sky ('k') | sky/viewer/script/core.html » ('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/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 shared_library("viewer") { 7 shared_library("viewer") {
8 output_name = "sky_viewer" 8 output_name = "sky_viewer"
9 9
10 sources = [ 10 sources = [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 "//mojo/services/public/interfaces/network", 65 "//mojo/services/public/interfaces/network",
66 "//mojo/services/public/interfaces/surfaces", 66 "//mojo/services/public/interfaces/surfaces",
67 "//net", 67 "//net",
68 "//skia", 68 "//skia",
69 "//sky/engine/public:blink", 69 "//sky/engine/public:blink",
70 "//sky/viewer/cc", 70 "//sky/viewer/cc",
71 "//third_party/icu", 71 "//third_party/icu",
72 "//ui/native_theme", 72 "//ui/native_theme",
73 "//url", 73 "//url",
74 ":bindings", 74 ":bindings",
75 ":html_modules", 75 ":sky_modules",
76 ] 76 ]
77 } 77 }
78 78
79 mojom("bindings") { 79 mojom("bindings") {
80 sources = [ 80 sources = [
81 "test_observer.mojom", 81 "test_observer.mojom",
82 "services/tracing.mojom", 82 "services/tracing.mojom",
83 "services/inspector.mojom", 83 "services/inspector.mojom",
84 ] 84 ]
85 } 85 }
86 86
87 copy("html_modules") { 87 copy("sky_modules") {
88 sources = [ 88 sources = [
89 "script/core.html", 89 "script/core.sky",
90 "script/support.html", 90 "script/support.sky",
91 ] 91 ]
92 outputs = [ 92 outputs = [
93 "$root_gen_dir/mojo/public/html/{{source_file_part}}", 93 "$root_gen_dir/mojo/public/sky/{{source_file_part}}",
94 ] 94 ]
95 } 95 }
OLDNEW
« no previous file with comments | « sky/tests/services/network.sky ('k') | sky/viewer/script/core.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698