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

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

Issue 1783533003: Moves mojo_application_manifest to data_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « mojo/services/tracing/BUILD.gn ('k') | mojo/shell/background/tests/BUILD.gn » ('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_manifest.gni") 5 import("//mojo/public/mojo_application_manifest.gni")
6 import("//mojo/public/tools/bindings/mojom.gni") 6 import("//mojo/public/tools/bindings/mojom.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 group("all") { 9 group("all") {
10 testonly = true 10 testonly = true
(...skipping 16 matching lines...) Expand all
27 "loader.h", 27 "loader.h",
28 "native_runner.h", 28 "native_runner.h",
29 "native_runner_delegate.h", 29 "native_runner_delegate.h",
30 "shell.cc", 30 "shell.cc",
31 "shell.h", 31 "shell.h",
32 "switches.cc", 32 "switches.cc",
33 "switches.h", 33 "switches.h",
34 ] 34 ]
35 35
36 deps = [ 36 deps = [
37 ":manifest",
38 "//base", 37 "//base",
39 "//base/third_party/dynamic_annotations", 38 "//base/third_party/dynamic_annotations",
40 "//mojo/common", 39 "//mojo/common",
41 "//mojo/public/cpp/bindings", 40 "//mojo/public/cpp/bindings",
42 "//mojo/services/catalog/public/interfaces", 41 "//mojo/services/catalog/public/interfaces",
43 "//mojo/shell/public/cpp:sources", 42 "//mojo/shell/public/cpp:sources",
44 "//mojo/shell/public/interfaces", 43 "//mojo/shell/public/interfaces",
45 "//mojo/util:filename_util", 44 "//mojo/util:filename_util",
46 "//url", 45 "//url",
47 ] 46 ]
48 47
49 public_deps = [ 48 public_deps = [
50 # ApplicationManager exposes and uses PackageManager types in its header. 49 # ApplicationManager exposes and uses PackageManager types in its header.
51 "//mojo/services/catalog:lib", 50 "//mojo/services/catalog:lib",
52 ] 51 ]
53 52
53 data_deps = [
54 ":manifest",
55 ]
56
54 # For mojo/shell/application_loader.h 57 # For mojo/shell/application_loader.h
55 allow_circular_includes_from = [ "//mojo/services/catalog:lib" ] 58 allow_circular_includes_from = [ "//mojo/services/catalog:lib" ]
56 } 59 }
57 60
58 mojo_application_manifest("manifest") { 61 mojo_application_manifest("manifest") {
59 application_name = "shell" 62 application_name = "shell"
60 source = "manifest.json" 63 source = "manifest.json"
61 } 64 }
OLDNEW
« no previous file with comments | « mojo/services/tracing/BUILD.gn ('k') | mojo/shell/background/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698