| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
| 6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
| 7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
| 8 { | 8 { |
| 9 'variables': { | 9 'variables': { |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 # GN version: //mojo/common:common_custom_types | 58 # GN version: //mojo/common:common_custom_types |
| 59 'target_name': 'mojo_common_custom_types_mojom', | 59 'target_name': 'mojo_common_custom_types_mojom', |
| 60 'type': 'none', | 60 'type': 'none', |
| 61 'variables': { | 61 'variables': { |
| 62 'mojom_files': [ | 62 'mojom_files': [ |
| 63 'common/common_custom_types.mojom', | 63 'common/common_custom_types.mojom', |
| 64 ], | 64 ], |
| 65 'mojom_typemaps': [ | 65 'mojom_typemaps': [ |
| 66 'common/common_custom_types.typemap', | 66 'common/common_custom_types.typemap', |
| 67 ], | 67 ], |
| 68 'use_new_wrapper_types': 'false', | |
| 69 }, | 68 }, |
| 70 'dependencies': [ | 69 'dependencies': [ |
| 71 '../ipc/ipc.gyp:ipc', | 70 '../ipc/ipc.gyp:ipc', |
| 72 ], | 71 ], |
| 73 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], | 72 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], |
| 74 }, | 73 }, |
| 75 { | 74 { |
| 76 # GN version: //mojo/common:test_common_custom_types | 75 # GN version: //mojo/common:test_common_custom_types |
| 77 'target_name': 'mojo_test_common_custom_types', | 76 'target_name': 'mojo_test_common_custom_types', |
| 78 'type': 'static_library', | 77 'type': 'static_library', |
| 79 'variables': { | 78 'variables': { |
| 80 'mojom_typemaps': [ | 79 'mojom_typemaps': [ |
| 81 'common/common_custom_types.typemap', | 80 'common/common_custom_types.typemap', |
| 82 ], | 81 ], |
| 83 'use_new_wrapper_types': 'false', | |
| 84 }, | 82 }, |
| 85 'sources': [ | 83 'sources': [ |
| 86 'common/test_common_custom_types.mojom', | 84 'common/test_common_custom_types.mojom', |
| 87 ], | 85 ], |
| 88 'dependencies': [ | 86 'dependencies': [ |
| 89 'mojo_common_custom_types_mojom', | 87 'mojo_common_custom_types_mojom', |
| 90 ], | 88 ], |
| 91 'includes': [ 'mojom_bindings_generator.gypi' ], | 89 'includes': [ 'mojom_bindings_generator.gypi' ], |
| 92 }, | 90 }, |
| 93 { | 91 { |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 '../build/isolate.gypi', | 183 '../build/isolate.gypi', |
| 186 ], | 184 ], |
| 187 'sources': [ | 185 'sources': [ |
| 188 'mojo_common_unittests.isolate', | 186 'mojo_common_unittests.isolate', |
| 189 ], | 187 ], |
| 190 }, | 188 }, |
| 191 ], | 189 ], |
| 192 }], | 190 }], |
| 193 ] | 191 ] |
| 194 } | 192 } |
| OLD | NEW |