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

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

Issue 1244233002: Allow trusted brokers to restrict connections for spawned applications to whitelisted applications … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 years, 5 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("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 5 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 source_set("shell") { 8 source_set("shell") {
9 output_name = "mojo_shell" 9 output_name = "mojo_shell"
10 sources = [ 10 sources = [
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 "//url", 51 "//url",
52 "//third_party/mojo/src/mojo/edk/system", 52 "//third_party/mojo/src/mojo/edk/system",
53 "//mojo/environment:chromium", 53 "//mojo/environment:chromium",
54 "//mojo/util:filename_util", 54 "//mojo/util:filename_util",
55 ] 55 ]
56 } 56 }
57 57
58 test("mojo_shell_unittests") { 58 test("mojo_shell_unittests") {
59 sources = [ 59 sources = [
60 "application_manager_unittest.cc", 60 "application_manager_unittest.cc",
61 "capability_filter_unittest.cc",
61 "query_util_unittest.cc", 62 "query_util_unittest.cc",
62 ] 63 ]
63 64
64 deps = [ 65 deps = [
65 ":shell", 66 ":shell",
66 ":test_bindings", 67 ":test_bindings",
67 "//base", 68 "//base",
68 "//mojo/application/public/cpp", 69 "//mojo/application/public/cpp",
69 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", 70 "//third_party/mojo/src/mojo/edk/test:run_all_unittests",
70 "//testing/gtest", 71 "//testing/gtest",
71 "//url", 72 "//url",
72 ] 73 ]
73 } 74 }
74 75
75 mojom("test_bindings") { 76 mojom("test_bindings") {
76 sources = [ 77 sources = [
77 "test.mojom", 78 "test.mojom",
78 ] 79 ]
79 } 80 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698