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

Side by Side Diff: ipc/BUILD.gn

Issue 619843002: cc: Make separate interface for BeginFrame ipc from OutputSurface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 component("ipc") { 5 component("ipc") {
6 sources = [ 6 sources = [
7 "file_descriptor_set_posix.cc", 7 "file_descriptor_set_posix.cc",
8 "file_descriptor_set_posix.h", 8 "file_descriptor_set_posix.h",
9 "ipc_channel.cc", 9 "ipc_channel.cc",
10 "ipc_channel.h", 10 "ipc_channel.h",
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 ] 83 ]
84 } 84 }
85 85
86 # TODO(dpranke): crbug.com/360936. Get this to build and run on Android. 86 # TODO(dpranke): crbug.com/360936. Get this to build and run on Android.
87 if (!is_android) { 87 if (!is_android) {
88 test("ipc_tests") { 88 test("ipc_tests") {
89 sources = [ 89 sources = [
90 "file_descriptor_set_posix_unittest.cc", 90 "file_descriptor_set_posix_unittest.cc",
91 "ipc_channel_posix_unittest.cc", 91 "ipc_channel_posix_unittest.cc",
92 "ipc_channel_unittest.cc", 92 "ipc_channel_unittest.cc",
93 "ipc_forwarding_message_filter_unittest.cc",
93 "ipc_fuzzing_tests.cc", 94 "ipc_fuzzing_tests.cc",
94 "ipc_message_unittest.cc", 95 "ipc_message_unittest.cc",
95 "ipc_message_utils_unittest.cc", 96 "ipc_message_utils_unittest.cc",
96 "ipc_send_fds_test.cc", 97 "ipc_send_fds_test.cc",
97 "ipc_sync_channel_unittest.cc", 98 "ipc_sync_channel_unittest.cc",
98 "ipc_sync_message_unittest.cc", 99 "ipc_sync_message_unittest.cc",
99 "ipc_sync_message_unittest.h", 100 "ipc_sync_message_unittest.h",
100 "sync_socket_unittest.cc", 101 "sync_socket_unittest.cc",
101 "unix_domain_socket_util_unittest.cc", 102 "unix_domain_socket_util_unittest.cc",
102 ] 103 ]
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 "ipc_test_channel_listener.h", 172 "ipc_test_channel_listener.h",
172 "ipc_test_channel_listener.cc", 173 "ipc_test_channel_listener.cc",
173 ] 174 ]
174 deps = [ 175 deps = [
175 ":ipc", 176 ":ipc",
176 "//base", 177 "//base",
177 "//testing/gtest", 178 "//testing/gtest",
178 ] 179 ]
179 } 180 }
180 181
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698