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

Side by Side Diff: mojo/edk/system/ports/BUILD.gn

Issue 1585493002: [mojo] Ports EDK (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//testing/test.gni")
6
7 source_set("ports") {
8 sources = [
9 "event.h",
10 "hash_functions.h",
11 "message.cc",
12 "message.h",
13 "message_queue.cc",
14 "message_queue.h",
15 "name.cc",
16 "name.h",
17 "node.cc",
18 "node.h",
19 "node_delegate.h",
20 "port.cc",
21 "port.h",
22 "port_ref.cc",
23 "user_data.h",
24 ]
25
26 public_deps = [
27 "//base",
28 "//mojo/public/c/system",
29 ]
30 }
31
32 test("mojo_system_ports_unittests") {
33 sources = [
34 "ports_unittest.cc",
35 ]
36
37 deps = [
38 ":ports",
39 "//base",
40 "//base/test:test_support",
41 "//mojo/edk/test:run_all_unittests",
42 "//testing/gtest",
43 ]
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698