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

Side by Side Diff: mojo/mojo_base.gyp

Issue 2009073003: Move mojo/converters/geometry -> ui/gfx/geometry/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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
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 'includes': [ 9 'includes': [
10 'mojo_variables.gypi', 10 'mojo_variables.gypi',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ], 87 ],
88 'export_dependent_settings': [ 88 'export_dependent_settings': [
89 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 89 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
90 ], 90 ],
91 'sources': [ 91 'sources': [
92 'common/url_type_converters.cc', 92 'common/url_type_converters.cc',
93 'common/url_type_converters.h', 93 'common/url_type_converters.h',
94 ], 94 ],
95 }, 95 },
96 { 96 {
97 # GN version: //mojo/converters/geometry
98 'target_name': 'mojo_geometry_lib',
99 'type': '<(component)',
100 'defines': [
101 'MOJO_GEOMETRY_IMPLEMENTATION',
102 ],
103 'dependencies': [
104 '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings',
105 '../ui/gfx/gfx.gyp:gfx_geometry',
106 '<(mojo_system_for_component)',
107 ],
108 'sources': [
109 'converters/geometry/geometry_type_converters.cc',
110 'converters/geometry/geometry_type_converters.h',
111 'converters/geometry/mojo_geometry_export.h',
112 ],
113 },
114 {
115 # GN version: //mojo/common:test_common_custom_types 97 # GN version: //mojo/common:test_common_custom_types
116 'target_name': 'mojo_test_common_custom_types', 98 'target_name': 'mojo_test_common_custom_types',
117 'type': 'static_library', 99 'type': 'static_library',
118 'variables': { 100 'variables': {
119 'mojom_typemaps': [ 101 'mojom_typemaps': [
120 'common/common_custom_types.typemap', 102 'common/common_custom_types.typemap',
121 ], 103 ],
122 }, 104 },
123 'sources': [ 105 'sources': [
124 'common/test_common_custom_types.mojom', 106 'common/test_common_custom_types.mojom',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 '../build/isolate.gypi', 220 '../build/isolate.gypi',
239 ], 221 ],
240 'sources': [ 222 'sources': [
241 'mojo_common_unittests.isolate', 223 'mojo_common_unittests.isolate',
242 ], 224 ],
243 }, 225 },
244 ], 226 ],
245 }], 227 }],
246 ] 228 ]
247 } 229 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698