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

Side by Side Diff: mojo/shell/BUILD.gn

Issue 1722743002: Adds ability for chrome to behave as mojo_runner (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge to tip of tree Created 4 years, 9 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 group("all") { 8 group("all") {
9 testonly = true 9 testonly = true
10 deps = [ 10 deps = [
(...skipping 15 matching lines...) Expand all
26 "application_manager.h", 26 "application_manager.h",
27 "capability_filter.cc", 27 "capability_filter.cc",
28 "capability_filter.h", 28 "capability_filter.h",
29 "connect_params.cc", 29 "connect_params.cc",
30 "connect_params.h", 30 "connect_params.h",
31 "connect_util.cc", 31 "connect_util.cc",
32 "connect_util.h", 32 "connect_util.h",
33 "identity.cc", 33 "identity.cc",
34 "identity.h", 34 "identity.h",
35 "native_runner.h", 35 "native_runner.h",
36 "native_runner_delegate.h",
36 "switches.cc", 37 "switches.cc",
37 "switches.h", 38 "switches.h",
38 ] 39 ]
39 40
40 deps = [ 41 deps = [
41 "//base", 42 "//base",
42 "//base/third_party/dynamic_annotations", 43 "//base/third_party/dynamic_annotations",
43 "//mojo/common", 44 "//mojo/common",
44 "//mojo/public/cpp/bindings", 45 "//mojo/public/cpp/bindings",
45 "//mojo/services/package_manager:lib", 46 "//mojo/services/package_manager:lib",
46 "//mojo/services/package_manager/public/interfaces", 47 "//mojo/services/package_manager/public/interfaces",
47 "//mojo/shell/public/cpp:sources", 48 "//mojo/shell/public/cpp:sources",
48 "//mojo/shell/public/interfaces", 49 "//mojo/shell/public/interfaces",
49 "//mojo/util:filename_util", 50 "//mojo/util:filename_util",
50 "//url", 51 "//url",
51 ] 52 ]
52 53
53 # For mojo/shell/application_loader.h 54 # For mojo/shell/application_loader.h
54 allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ] 55 allow_circular_includes_from = [ "//mojo/services/package_manager:lib" ]
55 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698