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

Side by Side Diff: mojo/mojo_base.gyp

Issue 1085783002: Replace image_messages.h with Mojo service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix review comments on set7 Created 5 years, 5 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 '../third_party/mojo/mojo_variables.gypi', 10 '../third_party/mojo/mojo_variables.gypi',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 ], 77 ],
78 'export_dependent_settings': [ 78 'export_dependent_settings': [
79 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 79 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
80 ], 80 ],
81 'sources': [ 81 'sources': [
82 'common/url_type_converters.cc', 82 'common/url_type_converters.cc',
83 'common/url_type_converters.h', 83 'common/url_type_converters.h',
84 ], 84 ],
85 }, 85 },
86 { 86 {
87 # GN version: //mojo/converters/geometry
88 'target_name': 'mojo_geometry_lib',
89 'type': '<(component)',
90 'defines': [
91 'MOJO_GEOMETRY_IMPLEMENTATION',
92 ],
93 'dependencies': [
94 '../ui/mojo/geometry/mojo_bindings.gyp:mojo_geometry_bindings',
95 '../ui/gfx/gfx.gyp:gfx_geometry',
96 'mojo_environment_chromium',
97 '<(mojo_system_for_component)',
98 ],
99 'sources': [
100 'converters/geometry/geometry_type_converters.cc',
101 'converters/geometry/geometry_type_converters.h',
102 'converters/geometry/mojo_geometry_export.h',
103 ],
104 },
105 {
87 # GN version: //mojo/common:mojo_common_unittests 106 # GN version: //mojo/common:mojo_common_unittests
88 'target_name': 'mojo_common_unittests', 107 'target_name': 'mojo_common_unittests',
89 'type': 'executable', 108 'type': 'executable',
90 'dependencies': [ 109 'dependencies': [
91 '../base/base.gyp:base', 110 '../base/base.gyp:base',
92 '../base/base.gyp:test_support_base', 111 '../base/base.gyp:test_support_base',
93 '../base/base.gyp:base_message_loop_tests', 112 '../base/base.gyp:base_message_loop_tests',
94 '../testing/gtest.gyp:gtest', 113 '../testing/gtest.gyp:gtest',
95 '../url/url.gyp:url_lib', 114 '../url/url.gyp:url_lib',
96 'mojo_common_lib', 115 'mojo_common_lib',
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 ], 327 ],
309 'variables': { 328 'variables': {
310 'java_in_dir': '<(DEPTH)/mojo/android/system', 329 'java_in_dir': '<(DEPTH)/mojo/android/system',
311 }, 330 },
312 'includes': [ '../build/java.gypi' ], 331 'includes': [ '../build/java.gypi' ],
313 }, 332 },
314 ] 333 ]
315 }] 334 }]
316 ] 335 ]
317 } 336 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698