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

Side by Side Diff: services/BUILD.gn

Issue 816113004: Dart: Adds a content handler and a test. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: comment Created 5 years, 11 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
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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//mojo/public/mojo.gni")
6 7
7 group("services") { 8 group("services") {
8 deps = [ 9 deps = [
9 "//services/clipboard", 10 "//services/clipboard",
10 "//services/fake_surfaces", 11 "//services/fake_surfaces",
11 "//services/gles2:lib", 12 "//services/gles2:lib",
12 "//services/http_server", 13 "//services/http_server",
13 "//services/http_server/public", 14 "//services/http_server/public",
14 "//services/icu_data", 15 "//services/icu_data",
15 "//services/js", 16 "//services/js",
16 "//services/native_viewport", 17 "//services/native_viewport",
17 "//services/surfaces", 18 "//services/surfaces",
18 "//services/test_service:bindings", 19 "//services/test_service:bindings",
19 "//services/tracing", 20 "//services/tracing",
20 "//services/view_manager", 21 "//services/view_manager",
21 "//services/window_manager", 22 "//services/window_manager",
22 ] 23 ]
24
25 if (mojo_use_dart) {
26 deps += [ "//services/dart" ]
27 }
23 } 28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698