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

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

Issue 773283006: Run gn format on all BUILD.gn files (gn version 306668) (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 # GYP version: mojo.gyp:mojo_application_manager 7 # GYP version: mojo.gyp:mojo_application_manager
8 component("application_manager") { 8 component("application_manager") {
9 output_name = "mojo_application_manager" 9 output_name = "mojo_application_manager"
10 sources = [ 10 sources = [
11 "application_loader.cc", 11 "application_loader.cc",
12 "application_loader.h", 12 "application_loader.h",
13 "application_manager.cc", 13 "application_manager.cc",
14 "application_manager.h", 14 "application_manager.h",
15 "application_manager_export.h", 15 "application_manager_export.h",
16 "background_shell_application_loader.cc", 16 "background_shell_application_loader.cc",
17 "background_shell_application_loader.h", 17 "background_shell_application_loader.h",
18 ] 18 ]
19 19
20 defines = [ 20 defines = [ "MOJO_APPLICATION_MANAGER_IMPLEMENTATION" ]
21 "MOJO_APPLICATION_MANAGER_IMPLEMENTATION",
22 ]
23 21
24 public_deps = [ 22 public_deps = [
25 "//base", 23 "//base",
26 "//mojo/common", 24 "//mojo/common",
27 "//mojo/public/interfaces/application:application", 25 "//mojo/public/interfaces/application:application",
28 "//mojo/services/public/interfaces/network:network", 26 "//mojo/services/public/interfaces/network:network",
29 "//url", 27 "//url",
30 ] 28 ]
31 deps = [ 29 deps = [
32 "//base/third_party/dynamic_annotations", 30 "//base/third_party/dynamic_annotations",
(...skipping 21 matching lines...) Expand all
54 "//mojo/common", 52 "//mojo/common",
55 "//mojo/edk/test:run_all_unittests", 53 "//mojo/edk/test:run_all_unittests",
56 "//mojo/environment:chromium", 54 "//mojo/environment:chromium",
57 "//mojo/public/cpp/bindings", 55 "//mojo/public/cpp/bindings",
58 "//testing/gtest", 56 "//testing/gtest",
59 "//url", 57 "//url",
60 ] 58 ]
61 } 59 }
62 60
63 mojom("test_bindings") { 61 mojom("test_bindings") {
64 sources = [ "test.mojom" ] 62 sources = [
63 "test.mojom",
64 ]
65 } 65 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698