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

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

Issue 716043002: Implement event sender service for testing (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
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 "//mojo/services/public/interfaces/content_handler", 63 "//mojo/services/public/interfaces/content_handler",
64 "//mojo/services/public/interfaces/gpu", 64 "//mojo/services/public/interfaces/gpu",
65 "//mojo/services/public/interfaces/input_events", 65 "//mojo/services/public/interfaces/input_events",
66 "//mojo/services/public/interfaces/navigation", 66 "//mojo/services/public/interfaces/navigation",
67 "//mojo/services/public/interfaces/network", 67 "//mojo/services/public/interfaces/network",
68 "//mojo/services/public/interfaces/surfaces", 68 "//mojo/services/public/interfaces/surfaces",
69 "//net", 69 "//net",
70 "//skia", 70 "//skia",
71 "//sky/engine/public:blink", 71 "//sky/engine/public:blink",
72 "//sky/services/inspector:bindings", 72 "//sky/services/inspector:bindings",
73 "//sky/services/testing:bindings",
73 "//sky/viewer/cc", 74 "//sky/viewer/cc",
74 "//third_party/icu", 75 "//third_party/icu",
75 "//ui/native_theme", 76 "//ui/native_theme",
76 "//url", 77 "//url",
77 ] 78 ]
78 } 79 }
79 80
80 mojom("bindings") { 81 mojom("bindings") {
81 sources = [ 82 sources = [
82 "services/test_harness.mojom",
83 "services/tracing.mojom", 83 "services/tracing.mojom",
84 "services/inspector.mojom", 84 "services/inspector.mojom",
85 ] 85 ]
86 } 86 }
87 87
88 copy("sky_modules") { 88 copy("sky_modules") {
89 sources = [ 89 sources = [
90 "script/core.sky", 90 "script/core.sky",
91 "script/support.sky", 91 "script/support.sky",
92 ] 92 ]
93 outputs = [ 93 outputs = [
94 "$root_gen_dir/mojo/public/sky/{{source_file_part}}", 94 "$root_gen_dir/mojo/public/sky/{{source_file_part}}",
95 ] 95 ]
96 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698