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

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

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more cleanup Created 5 years, 2 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni")
7 7
8 mojom("client_channel") { 8 mojom("client_channel") {
9 sources = [ 9 sources = [
10 "client_channel.mojom", 10 "client_channel.mojom",
(...skipping 20 matching lines...) Expand all
31 "scoped_ipc_support.cc", 31 "scoped_ipc_support.cc",
32 "scoped_ipc_support.h", 32 "scoped_ipc_support.h",
33 ] 33 ]
34 34
35 defines = [ "IPC_MOJO_IMPLEMENTATION" ] 35 defines = [ "IPC_MOJO_IMPLEMENTATION" ]
36 36
37 deps = [ 37 deps = [
38 "//base", 38 "//base",
39 "//base/third_party/dynamic_annotations", 39 "//base/third_party/dynamic_annotations",
40 "//ipc", 40 "//ipc",
41 "//mojo/edk/system",
41 "//mojo/environment:chromium", 42 "//mojo/environment:chromium",
42 "//third_party/mojo/src/mojo/edk/system", 43 "//third_party/mojo/src/mojo/edk/system",
43 "//third_party/mojo/src/mojo/public/c/environment:environment", 44 "//third_party/mojo/src/mojo/public/c/environment:environment",
44 "//third_party/mojo/src/mojo/public/cpp/bindings", 45 "//third_party/mojo/src/mojo/public/cpp/bindings",
45 ":client_channel", 46 ":client_channel",
46 ] 47 ]
47 } 48 }
48 49
49 test("ipc_mojo_unittests") { 50 test("ipc_mojo_unittests") {
50 sources = [ 51 sources = [
(...skipping 28 matching lines...) Expand all
79 "//base/test:test_support_perf", 80 "//base/test:test_support_perf",
80 "//base/third_party/dynamic_annotations", 81 "//base/third_party/dynamic_annotations",
81 "//ipc", 82 "//ipc",
82 "//ipc:test_support", 83 "//ipc:test_support",
83 "//ipc/mojo", 84 "//ipc/mojo",
84 "//mojo/environment:chromium", 85 "//mojo/environment:chromium",
85 "//third_party/mojo/src/mojo/edk/system", 86 "//third_party/mojo/src/mojo/edk/system",
86 "//url", 87 "//url",
87 ] 88 ]
88 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698