Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Side by Side Diff: mojo/mojo_base.gyp

Issue 2083433002: Mojo: Remove url type converters. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/common/url_type_converters.cc ('k') | net/interfaces/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 'mojom_typemaps': [ 65 'mojom_typemaps': [
66 'common/common_custom_types.typemap', 66 'common/common_custom_types.typemap',
67 ], 67 ],
68 }, 68 },
69 'dependencies': [ 69 'dependencies': [
70 '../ipc/ipc.gyp:ipc', 70 '../ipc/ipc.gyp:ipc',
71 ], 71 ],
72 'includes': [ 'mojom_bindings_generator_explicit.gypi' ], 72 'includes': [ 'mojom_bindings_generator_explicit.gypi' ],
73 }, 73 },
74 { 74 {
75 # GN version: //mojo/common:url_type_converters
76 'target_name': 'mojo_url_type_converters',
77 'type': 'static_library',
78 'dependencies': [
79 '../base/base.gyp:base',
80 '../url/url.gyp:url_lib',
81 '../mojo/mojo_public.gyp:mojo_public_system',
82 ],
83 'sources': [
84 'common/url_type_converters.cc',
85 'common/url_type_converters.h',
86 ],
87 },
88 {
89 # GN version: //mojo/common:test_common_custom_types 75 # GN version: //mojo/common:test_common_custom_types
90 'target_name': 'mojo_test_common_custom_types', 76 'target_name': 'mojo_test_common_custom_types',
91 'type': 'static_library', 77 'type': 'static_library',
92 'variables': { 78 'variables': {
93 'mojom_typemaps': [ 79 'mojom_typemaps': [
94 'common/common_custom_types.typemap', 80 'common/common_custom_types.typemap',
95 ], 81 ],
96 }, 82 },
97 'sources': [ 83 'sources': [
98 'common/test_common_custom_types.mojom', 84 'common/test_common_custom_types.mojom',
(...skipping 14 matching lines...) Expand all
113 '../testing/gtest.gyp:gtest', 99 '../testing/gtest.gyp:gtest',
114 '../url/url.gyp:url_lib', 100 '../url/url.gyp:url_lib',
115 'mojo_common_custom_types_mojom', 101 'mojo_common_custom_types_mojom',
116 'mojo_common_lib', 102 'mojo_common_lib',
117 'mojo_test_common_custom_types', 103 'mojo_test_common_custom_types',
118 'mojo_edk.gyp:mojo_system_impl', 104 'mojo_edk.gyp:mojo_system_impl',
119 'mojo_edk.gyp:mojo_common_test_support', 105 'mojo_edk.gyp:mojo_common_test_support',
120 'mojo_edk.gyp:mojo_run_all_unittests', 106 'mojo_edk.gyp:mojo_run_all_unittests',
121 'mojo_public.gyp:mojo_cpp_bindings', 107 'mojo_public.gyp:mojo_cpp_bindings',
122 'mojo_public.gyp:mojo_public_test_utils', 108 'mojo_public.gyp:mojo_public_test_utils',
123 'mojo_url_type_converters',
124 ], 109 ],
125 'sources': [ 110 'sources': [
126 'common/common_custom_types_unittest.cc', 111 'common/common_custom_types_unittest.cc',
127 'common/common_type_converters_unittest.cc', 112 'common/common_type_converters_unittest.cc',
128 ], 113 ],
129 }, 114 },
130 ], 115 ],
131 'conditions': [ 116 'conditions': [
132 ['OS=="android"', { 117 ['OS=="android"', {
133 'targets': [ 118 'targets': [
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 '../build/isolate.gypi', 183 '../build/isolate.gypi',
199 ], 184 ],
200 'sources': [ 185 'sources': [
201 'mojo_common_unittests.isolate', 186 'mojo_common_unittests.isolate',
202 ], 187 ],
203 }, 188 },
204 ], 189 ],
205 }], 190 }],
206 ] 191 ]
207 } 192 }
OLDNEW
« no previous file with comments | « mojo/common/url_type_converters.cc ('k') | net/interfaces/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698