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

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

Issue 707093002: Teach PRESUBMIT.py how to run gn check for most of the mojo repo (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update after hans landed 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
« no previous file with comments | « mojo/application/BUILD.gn ('k') | mojo/apps/js/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/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 = [
(...skipping 12 matching lines...) Expand all
23 23
24 public_deps = [ 24 public_deps = [
25 "//base", 25 "//base",
26 "//mojo/common", 26 "//mojo/common",
27 "//mojo/public/interfaces/application:application", 27 "//mojo/public/interfaces/application:application",
28 "//mojo/services/public/interfaces/network:network", 28 "//mojo/services/public/interfaces/network:network",
29 "//url", 29 "//url",
30 ] 30 ]
31 deps = [ 31 deps = [
32 "//base/third_party/dynamic_annotations", 32 "//base/third_party/dynamic_annotations",
33 "//mojo/edk/system",
34 "//mojo/environment:chromium",
35 "//mojo/public/cpp/application",
36 "//mojo/public/cpp/bindings",
37 "//mojo/public/cpp/system",
38 "//mojo/services/public/interfaces/content_handler",
33 "//net", 39 "//net",
34 "//url", 40 "//url",
35 "//mojo/edk/system",
36 "//mojo/environment:chromium",
37 "//mojo/services/public/interfaces/content_handler:content_handler",
38 ] 41 ]
39 } 42 }
40 43
41 # GYP version: mojo.gyp:mojo_application_manager_unittests 44 # GYP version: mojo.gyp:mojo_application_manager_unittests
42 test("mojo_application_manager_unittests") { 45 test("mojo_application_manager_unittests") {
43 sources = [ 46 sources = [
44 "application_manager_unittest.cc", 47 "application_manager_unittest.cc",
45 "background_shell_application_loader_unittest.cc", 48 "background_shell_application_loader_unittest.cc",
46 ] 49 ]
47 50
48 deps = [ 51 deps = [
49 ":application_manager", 52 ":application_manager",
50 ":test_bindings", 53 ":test_bindings",
51 "//base", 54 "//base",
52 "//mojo/application", 55 "//mojo/application",
53 "//mojo/common", 56 "//mojo/common",
54 "//mojo/edk/test:run_all_unittests", 57 "//mojo/edk/test:run_all_unittests",
55 "//mojo/environment:chromium", 58 "//mojo/environment:chromium",
56 "//mojo/public/cpp/bindings", 59 "//mojo/public/cpp/bindings",
57 "//testing/gtest", 60 "//testing/gtest",
58 "//url", 61 "//url",
59 ] 62 ]
60 } 63 }
61 64
62 mojom("test_bindings") { 65 mojom("test_bindings") {
63 sources = [ "test.mojom" ] 66 sources = [ "test.mojom" ]
64 } 67 }
OLDNEW
« no previous file with comments | « mojo/application/BUILD.gn ('k') | mojo/apps/js/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698