Update V8 to version 4.6.22.
[chromium-blink-merge.git] / ipc / BUILD.gn
blob4074fe91916be129a2730d10f1c3effd1b6235d1
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
3 # found in the LICENSE file.
5 import("//testing/test.gni")
7 component("ipc") {
8   sources = [
9     "attachment_broker.h",
10     "attachment_broker_messages.h",
11     "attachment_broker_win.cc",
12     "attachment_broker_win.h",
13     "brokerable_attachment.cc",
14     "brokerable_attachment.h",
15     "handle_attachment_win.cc",
16     "handle_attachment_win.h",
17     "ipc_channel.cc",
18     "ipc_channel.h",
19     "ipc_channel_common.cc",
20     "ipc_channel_factory.cc",
21     "ipc_channel_factory.h",
22     "ipc_channel_handle.h",
23     "ipc_channel_nacl.cc",
24     "ipc_channel_nacl.h",
25     "ipc_channel_posix.cc",
26     "ipc_channel_posix.h",
27     "ipc_channel_proxy.cc",
28     "ipc_channel_proxy.h",
29     "ipc_channel_reader.cc",
30     "ipc_channel_reader.h",
31     "ipc_channel_win.cc",
32     "ipc_channel_win.h",
33     "ipc_descriptors.h",
34     "ipc_export.h",
35     "ipc_handle_win.cc",
36     "ipc_handle_win.h",
37     "ipc_listener.h",
38     "ipc_logging.cc",
39     "ipc_logging.h",
40     "ipc_message.cc",
41     "ipc_message.h",
42     "ipc_message_attachment.cc",
43     "ipc_message_attachment.h",
44     "ipc_message_attachment_set.cc",
45     "ipc_message_attachment_set.h",
46     "ipc_message_generator.cc",
47     "ipc_message_generator.h",
48     "ipc_message_macros.h",
49     "ipc_message_start.h",
50     "ipc_message_utils.cc",
51     "ipc_message_utils.h",
52     "ipc_param_traits.h",
53     "ipc_platform_file.cc",
54     "ipc_platform_file.h",
55     "ipc_platform_file_attachment_posix.cc",
56     "ipc_platform_file_attachment_posix.h",
57     "ipc_sender.h",
58     "ipc_switches.cc",
59     "ipc_switches.h",
60     "ipc_sync_channel.cc",
61     "ipc_sync_channel.h",
62     "ipc_sync_message.cc",
63     "ipc_sync_message.h",
64     "ipc_sync_message_filter.cc",
65     "ipc_sync_message_filter.h",
66     "message_filter.cc",
67     "message_filter.h",
68     "message_filter_router.cc",
69     "message_filter_router.h",
70     "param_traits_log_macros.h",
71     "param_traits_macros.h",
72     "param_traits_read_macros.h",
73     "param_traits_write_macros.h",
74     "struct_constructor_macros.h",
75     "struct_destructor_macros.h",
76     "unix_domain_socket_util.cc",
77     "unix_domain_socket_util.h",
78   ]
80   if (is_nacl) {
81     sources -= [
82       "ipc_channel.cc",
83       "ipc_channel_posix.cc",
84       "unix_domain_socket_util.cc",
85     ]
86   } else {
87     sources -= [
88       "ipc_channel_nacl.cc",
89       "ipc_channel_nacl.h",
90     ]
91   }
93   if (is_win || is_ios) {
94     sources -= [ "unix_domain_socket_util.cc" ]
95   }
97   defines = [ "IPC_IMPLEMENTATION" ]
99   deps = [
100     "//base",
102     # TODO(viettrungluu): Needed for base/lazy_instance.h, which is suspect.
103     "//base/third_party/dynamic_annotations",
104     "//crypto:crypto",
105   ]
108 # TODO(GYP): crbug.com/360936. Get this to build and run on Android.
109 if (!is_android) {
110   test("ipc_tests") {
111     sources = [
112       "attachment_broker_win_unittest.cc",
113       "ipc_channel_posix_unittest.cc",
114       "ipc_channel_unittest.cc",
115       "ipc_fuzzing_tests.cc",
116       "ipc_message_attachment_set_posix_unittest.cc",
117       "ipc_message_unittest.cc",
118       "ipc_message_utils_unittest.cc",
119       "ipc_send_fds_test.cc",
120       "ipc_sync_channel_unittest.cc",
121       "ipc_sync_message_unittest.cc",
122       "ipc_sync_message_unittest.h",
123       "sync_socket_unittest.cc",
124       "unix_domain_socket_util_unittest.cc",
125     ]
127     if (is_win || is_ios) {
128       sources -= [ "unix_domain_socket_util_unittest.cc" ]
129     }
131     # TODO(brettw) hook up Android testing.
132     #if (is_android && gtest_target_type == "shared_library") {
133     #  deps += "/testing/android/native_test.gyp:native_testNative_code"
134     #}
136     # TODO(brettw) hook up tcmalloc to this target.
137     #if (is_posix && !is_mac && !is_android) {
138     #  if (use_allocator!="none") {
139     #    deps += "/base/allocator"
140     #  }
141     #}
143     deps = [
144       ":ipc",
145       ":test_support",
146       "//base",
147       "//base:i18n",
148       "//base/test:run_all_unittests",
149       "//base/test:test_support",
150       "//testing/gtest",
151     ]
152   }
154   test("ipc_perftests") {
155     sources = [
156       "ipc_perftests.cc",
157     ]
159     # TODO(brettw) hook up Android testing.
160     #if (is_android && gtest_target_type == "shared_library") {
161     #  deps += "/testing/android/native_test.gyp:native_testNative_code"
162     #}
164     # TODO(brettw) hook up tcmalloc to this target.
165     #if (is_posix && !is_mac && !is_android) {
166     #  if (use_allocator!="none") {
167     #    deps += "//base/allocator"
168     #  }
169     #}
170     deps = [
171       ":ipc",
172       ":test_support",
173       "//base",
174       "//base:i18n",
175       "//base/test:test_support",
176       "//base/test:test_support_perf",
177       "//testing/gtest",
178     ]
179   }
182 static_library("test_support") {
183   testonly = true
184   sources = [
185     "ipc_multiprocess_test.cc",
186     "ipc_multiprocess_test.h",
187     "ipc_perftest_support.cc",
188     "ipc_perftest_support.h",
189     "ipc_security_test_util.cc",
190     "ipc_security_test_util.h",
191     "ipc_test_base.cc",
192     "ipc_test_base.h",
193     "ipc_test_channel_listener.cc",
194     "ipc_test_channel_listener.h",
195     "ipc_test_sink.cc",
196     "ipc_test_sink.h",
197   ]
198   deps = [
199     ":ipc",
200     "//base",
201     "//base/test:test_support",
202     "//testing/gtest",
203   ]