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