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 { |
64 'target_name': 'ipc_run_all_unittests', | 72 'target_name': 'ipc_run_all_unittests', |
65 'type': 'static_library', | 73 'type': 'static_library', |
66 'dependencies': [ | 74 'dependencies': [ |
67 '../base/base.gyp:base', | 75 '../base/base.gyp:base', |
68 '../base/base.gyp:test_support_base', | 76 '../base/base.gyp:test_support_base', |
69 '../mojo/mojo_edk.gyp:mojo_common_test_support', | 77 '../mojo/mojo_edk.gyp:mojo_common_test_support', |
70 '../mojo/mojo_edk.gyp:mojo_system_impl', | 78 '../mojo/mojo_edk.gyp:mojo_system_impl', |
71 '../testing/gtest.gyp:gtest', | 79 '../testing/gtest.gyp:gtest', |
72 ], | 80 ], |
73 'include_dirs': [ | 81 'include_dirs': [ |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 '../build/isolate.gypi', | 313 '../build/isolate.gypi', |
306 ], | 314 ], |
307 'sources': [ | 315 'sources': [ |
308 'ipc_tests.isolate', | 316 'ipc_tests.isolate', |
309 ], | 317 ], |
310 }, | 318 }, |
311 ], | 319 ], |
312 }], | 320 }], |
313 ], | 321 ], |
314 } | 322 } |
OLD | NEW |