OLD | NEW |
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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'ipc.gypi', | 10 'ipc.gypi', |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 'dependencies': [ | 54 'dependencies': [ |
55 'ipc_interfaces_mojom', | 55 'ipc_interfaces_mojom', |
56 '../base/base.gyp:base', | 56 '../base/base.gyp:base', |
57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', | 57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', |
58 ], | 58 ], |
59 'include_dirs': [ | 59 'include_dirs': [ |
60 '..', | 60 '..', |
61 ], | 61 ], |
62 }, | 62 }, |
63 { | 63 { |
64 'target_name': 'ipc_test_interfaces', | |
65 'type': 'static_library', | |
66 'sources': [ | |
67 'ipc_test.mojom', | |
68 ], | |
69 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], | |
70 }, | |
71 { | |
72 'target_name': 'ipc_run_all_unittests', | 64 'target_name': 'ipc_run_all_unittests', |
73 'type': 'static_library', | 65 'type': 'static_library', |
74 'dependencies': [ | 66 'dependencies': [ |
75 '../base/base.gyp:base', | 67 '../base/base.gyp:base', |
76 '../base/base.gyp:test_support_base', | 68 '../base/base.gyp:test_support_base', |
77 '../mojo/mojo_edk.gyp:mojo_common_test_support', | 69 '../mojo/mojo_edk.gyp:mojo_common_test_support', |
78 '../mojo/mojo_edk.gyp:mojo_system_impl', | 70 '../mojo/mojo_edk.gyp:mojo_system_impl', |
79 '../testing/gtest.gyp:gtest', | 71 '../testing/gtest.gyp:gtest', |
80 ], | 72 ], |
81 'include_dirs': [ | 73 'include_dirs': [ |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 '../build/isolate.gypi', | 305 '../build/isolate.gypi', |
314 ], | 306 ], |
315 'sources': [ | 307 'sources': [ |
316 'ipc_tests.isolate', | 308 'ipc_tests.isolate', |
317 ], | 309 ], |
318 }, | 310 }, |
319 ], | 311 ], |
320 }], | 312 }], |
321 ], | 313 ], |
322 } | 314 } |
OLD | NEW |