| 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 27 matching lines...) Expand all Loading... |
| 38 ], | 38 ], |
| 39 }, | 39 }, |
| 40 { | 40 { |
| 41 'target_name': 'ipc_interfaces_mojom', | 41 'target_name': 'ipc_interfaces_mojom', |
| 42 'type': 'none', | 42 'type': 'none', |
| 43 'variables': { | 43 'variables': { |
| 44 'require_interface_bindings': 0, | 44 'require_interface_bindings': 0, |
| 45 'mojom_files': [ | 45 'mojom_files': [ |
| 46 'ipc.mojom', | 46 'ipc.mojom', |
| 47 ], | 47 ], |
| 48 'use_new_wrapper_types': 'false', | |
| 49 }, | 48 }, |
| 50 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], | 49 'includes': [ '../mojo/mojom_bindings_generator_explicit.gypi' ], |
| 51 }, | 50 }, |
| 52 { | 51 { |
| 53 'target_name': 'ipc_interfaces', | 52 'target_name': 'ipc_interfaces', |
| 54 'type': 'static_library', | 53 'type': 'static_library', |
| 55 'dependencies': [ | 54 'dependencies': [ |
| 56 'ipc_interfaces_mojom', | 55 'ipc_interfaces_mojom', |
| 57 '../base/base.gyp:base', | 56 '../base/base.gyp:base', |
| 58 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', | 57 '../mojo/mojo_public.gyp:mojo_interface_bindings_generation', |
| 59 ], | 58 ], |
| 60 'include_dirs': [ | 59 'include_dirs': [ |
| 61 '..', | 60 '..', |
| 62 ], | 61 ], |
| 63 }, | 62 }, |
| 64 { | 63 { |
| 65 'target_name': 'ipc_test_interfaces', | 64 'target_name': 'ipc_test_interfaces', |
| 66 'type': 'static_library', | 65 'type': 'static_library', |
| 67 'sources': [ | 66 'sources': [ |
| 68 'ipc_test.mojom', | 67 'ipc_test.mojom', |
| 69 ], | 68 ], |
| 70 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], | 69 'includes': [ '../mojo/mojom_bindings_generator.gypi' ], |
| 71 'variables': { | |
| 72 'use_new_wrapper_types': 'false', | |
| 73 }, | |
| 74 }, | 70 }, |
| 75 { | 71 { |
| 76 'target_name': 'ipc_run_all_unittests', | 72 'target_name': 'ipc_run_all_unittests', |
| 77 'type': 'static_library', | 73 'type': 'static_library', |
| 78 'dependencies': [ | 74 'dependencies': [ |
| 79 '../base/base.gyp:base', | 75 '../base/base.gyp:base', |
| 80 '../base/base.gyp:test_support_base', | 76 '../base/base.gyp:test_support_base', |
| 81 '../mojo/mojo_edk.gyp:mojo_common_test_support', | 77 '../mojo/mojo_edk.gyp:mojo_common_test_support', |
| 82 '../mojo/mojo_edk.gyp:mojo_system_impl', | 78 '../mojo/mojo_edk.gyp:mojo_system_impl', |
| 83 '../testing/gtest.gyp:gtest', | 79 '../testing/gtest.gyp:gtest', |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 '../build/isolate.gypi', | 314 '../build/isolate.gypi', |
| 319 ], | 315 ], |
| 320 'sources': [ | 316 'sources': [ |
| 321 'ipc_tests.isolate', | 317 'ipc_tests.isolate', |
| 322 ], | 318 ], |
| 323 }, | 319 }, |
| 324 ], | 320 ], |
| 325 }], | 321 }], |
| 326 ], | 322 ], |
| 327 } | 323 } |
| OLD | NEW |