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

Side by Side Diff: mojo/mojo_base.gyp

Issue 975083002: mojo/common: Decouple GURL dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Landing Created 5 years, 9 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/environment/BUILD.gn ('k') | mojo/services/html_viewer/weburlloader_impl.cc » ('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 'includes': [ 9 'includes': [
10 '../third_party/mojo/mojo_variables.gypi', 10 '../third_party/mojo/mojo_variables.gypi',
(...skipping 26 matching lines...) Expand all
37 }, 37 },
38 { 38 {
39 # GN version: //mojo/common 39 # GN version: //mojo/common
40 'target_name': 'mojo_common_lib', 40 'target_name': 'mojo_common_lib',
41 'type': '<(component)', 41 'type': '<(component)',
42 'defines': [ 42 'defines': [
43 'MOJO_COMMON_IMPLEMENTATION', 43 'MOJO_COMMON_IMPLEMENTATION',
44 ], 44 ],
45 'dependencies': [ 45 'dependencies': [
46 '../base/base.gyp:base', 46 '../base/base.gyp:base',
47 '../url/url.gyp:url_lib',
48 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 47 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
49 '<(mojo_system_for_component)', 48 '<(mojo_system_for_component)',
50 ], 49 ],
51 'export_dependent_settings': [ 50 'export_dependent_settings': [
52 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 51 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
53 ], 52 ],
54 'sources': [ 53 'sources': [
55 'common/common_type_converters.cc', 54 'common/common_type_converters.cc',
56 'common/common_type_converters.h', 55 'common/common_type_converters.h',
57 'common/data_pipe_utils.cc', 56 'common/data_pipe_utils.cc',
58 'common/data_pipe_utils.h', 57 'common/data_pipe_utils.h',
59 'common/handle_watcher.cc', 58 'common/handle_watcher.cc',
60 'common/handle_watcher.h', 59 'common/handle_watcher.h',
61 'common/message_pump_mojo.cc', 60 'common/message_pump_mojo.cc',
62 'common/message_pump_mojo.h', 61 'common/message_pump_mojo.h',
63 'common/message_pump_mojo_handler.h', 62 'common/message_pump_mojo_handler.h',
64 'common/time_helper.cc', 63 'common/time_helper.cc',
65 'common/time_helper.h', 64 'common/time_helper.h',
66 ], 65 ],
67 }, 66 },
68 { 67 {
68 # GN version: //mojo/common:url_type_converters
69 'target_name': 'mojo_url_type_converters',
70 'type': 'static_library',
71 'dependencies': [
72 '../base/base.gyp:base',
73 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
74 '../url/url.gyp:url_lib',
75 '<(mojo_system_for_component)',
76 ],
77 'export_dependent_settings': [
78 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
79 ],
80 'sources': [
81 'common/url_type_converters.cc',
82 'common/url_type_converters.h',
83 ],
84 },
85 {
69 # GN version: //mojo/common:mojo_common_unittests 86 # GN version: //mojo/common:mojo_common_unittests
70 'target_name': 'mojo_common_unittests', 87 'target_name': 'mojo_common_unittests',
71 'type': 'executable', 88 'type': 'executable',
72 'dependencies': [ 89 'dependencies': [
73 '../base/base.gyp:base', 90 '../base/base.gyp:base',
74 '../base/base.gyp:test_support_base', 91 '../base/base.gyp:test_support_base',
75 '../base/base.gyp:base_message_loop_tests', 92 '../base/base.gyp:base_message_loop_tests',
76 '../testing/gtest.gyp:gtest', 93 '../testing/gtest.gyp:gtest',
77 '../url/url.gyp:url_lib', 94 '../url/url.gyp:url_lib',
78 'mojo_common_lib', 95 'mojo_common_lib',
96 'mojo_url_type_converters',
79 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 97 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
80 '../third_party/mojo/mojo_edk.gyp:mojo_common_test_support', 98 '../third_party/mojo/mojo_edk.gyp:mojo_common_test_support',
81 '../third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests', 99 '../third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests',
82 'mojo_environment_chromium', 100 'mojo_environment_chromium',
83 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 101 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
84 '../third_party/mojo/mojo_public.gyp:mojo_public_test_utils', 102 '../third_party/mojo/mojo_public.gyp:mojo_public_test_utils',
85 ], 103 ],
86 'sources': [ 104 'sources': [
87 'common/common_type_converters_unittest.cc', 105 'common/common_type_converters_unittest.cc',
88 'common/handle_watcher_unittest.cc', 106 'common/handle_watcher_unittest.cc',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 ], 239 ],
222 'variables': { 240 'variables': {
223 'java_in_dir': '<(DEPTH)/mojo/android/system', 241 'java_in_dir': '<(DEPTH)/mojo/android/system',
224 }, 242 },
225 'includes': [ '../build/java.gypi' ], 243 'includes': [ '../build/java.gypi' ],
226 }, 244 },
227 ] 245 ]
228 }] 246 }]
229 ] 247 ]
230 } 248 }
OLDNEW
« no previous file with comments | « mojo/environment/BUILD.gn ('k') | mojo/services/html_viewer/weburlloader_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698