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

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

Issue 1676913002: [mojo] Delete third_party/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 10 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 mojom("client_channel") { 8 mojom("client_channel") {
9 sources = [ 9 sources = [
10 "client_channel.mojom", 10 "client_channel.mojom",
(...skipping 21 matching lines...) Expand all
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 ":client_channel", 38 ":client_channel",
39 "//base", 39 "//base",
40 "//base/third_party/dynamic_annotations", 40 "//base/third_party/dynamic_annotations",
41 "//ipc", 41 "//ipc",
42 "//mojo/edk/system",
42 "//mojo/environment:chromium", 43 "//mojo/environment:chromium",
43 "//mojo/public/c/environment:environment", 44 "//mojo/public/c/environment:environment",
44 "//mojo/public/cpp/bindings", 45 "//mojo/public/cpp/bindings",
45 "//third_party/mojo/src/mojo/edk/system",
46 ] 46 ]
47 } 47 }
48 48
49 test("ipc_mojo_unittests") { 49 test("ipc_mojo_unittests") {
50 sources = [ 50 sources = [
51 "async_handle_waiter_unittest.cc", 51 "async_handle_waiter_unittest.cc",
52 "ipc_channel_mojo_unittest.cc", 52 "ipc_channel_mojo_unittest.cc",
53 "ipc_mojo_bootstrap_unittest.cc", 53 "ipc_mojo_bootstrap_unittest.cc",
54 "run_all_unittests.cc", 54 "run_all_unittests.cc",
55 ] 55 ]
56 56
57 deps = [ 57 deps = [
58 "//base", 58 "//base",
59 "//base/test:test_support", 59 "//base/test:test_support",
60 "//base/third_party/dynamic_annotations", 60 "//base/third_party/dynamic_annotations",
61 "//ipc", 61 "//ipc",
62 "//ipc:test_support", 62 "//ipc:test_support",
63 "//ipc/mojo", 63 "//ipc/mojo",
64 "//mojo/edk/system",
64 "//mojo/environment:chromium", 65 "//mojo/environment:chromium",
65 "//testing/gtest", 66 "//testing/gtest",
66 "//third_party/mojo/src/mojo/edk/system",
67 "//url", 67 "//url",
68 ] 68 ]
69 } 69 }
70 70
71 test("ipc_mojo_perftests") { 71 test("ipc_mojo_perftests") {
72 sources = [ 72 sources = [
73 "ipc_mojo_perftest.cc", 73 "ipc_mojo_perftest.cc",
74 ] 74 ]
75 75
76 deps = [ 76 deps = [
77 "//base", 77 "//base",
78 "//base/test:test_support", 78 "//base/test:test_support",
79 "//base/test:test_support_perf", 79 "//base/test:test_support_perf",
80 "//base/third_party/dynamic_annotations", 80 "//base/third_party/dynamic_annotations",
81 "//ipc", 81 "//ipc",
82 "//ipc:test_support", 82 "//ipc:test_support",
83 "//ipc/mojo", 83 "//ipc/mojo",
84 "//mojo/edk/system",
84 "//mojo/environment:chromium", 85 "//mojo/environment:chromium",
85 "//third_party/mojo/src/mojo/edk/system",
86 "//url", 86 "//url",
87 ] 87 ]
88 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698