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

Side by Side Diff: mojo/mojo_base.gyp

Issue 1411063007: Add mojo::StrongBindingSet and use it in GeolocationServiceContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 ], 74 ],
75 'export_dependent_settings': [ 75 'export_dependent_settings': [
76 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 76 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
77 ], 77 ],
78 'sources': [ 78 'sources': [
79 'common/common_type_converters.cc', 79 'common/common_type_converters.cc',
80 'common/common_type_converters.h', 80 'common/common_type_converters.h',
81 'common/data_pipe_file_utils.cc', 81 'common/data_pipe_file_utils.cc',
82 'common/data_pipe_utils.cc', 82 'common/data_pipe_utils.cc',
83 'common/data_pipe_utils.h', 83 'common/data_pipe_utils.h',
84 'common/service_set.h',
84 ], 85 ],
85 }, 86 },
86 { 87 {
87 # GN version: //mojo/common:url_type_converters 88 # GN version: //mojo/common:url_type_converters
88 'target_name': 'mojo_url_type_converters', 89 'target_name': 'mojo_url_type_converters',
89 'type': 'static_library', 90 'type': 'static_library',
90 'dependencies': [ 91 'dependencies': [
91 '../base/base.gyp:base', 92 '../base/base.gyp:base',
92 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 93 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
93 '../url/url.gyp:url_lib', 94 '../url/url.gyp:url_lib',
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 'dependencies': [ 128 'dependencies': [
128 '../base/base.gyp:base', 129 '../base/base.gyp:base',
129 '../base/base.gyp:test_support_base', 130 '../base/base.gyp:test_support_base',
130 '../base/base.gyp:base_message_loop_tests', 131 '../base/base.gyp:base_message_loop_tests',
131 '../testing/gtest.gyp:gtest', 132 '../testing/gtest.gyp:gtest',
132 '../url/url.gyp:url_lib', 133 '../url/url.gyp:url_lib',
133 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl', 134 '../third_party/mojo/mojo_edk.gyp:mojo_system_impl',
134 '../third_party/mojo/mojo_edk.gyp:mojo_common_test_support', 135 '../third_party/mojo/mojo_edk.gyp:mojo_common_test_support',
135 '../third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests', 136 '../third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests',
136 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', 137 '../third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
138 '../third_party/mojo/mojo_public.gyp:mojo_public_test_interfaces_mojom',
137 '../third_party/mojo/mojo_public.gyp:mojo_public_test_utils', 139 '../third_party/mojo/mojo_public.gyp:mojo_public_test_utils',
138 'mojo_common_lib', 140 'mojo_common_lib',
139 'mojo_environment_chromium', 141 'mojo_environment_chromium',
140 'mojo_message_pump_lib', 142 'mojo_message_pump_lib',
141 'mojo_url_type_converters', 143 'mojo_url_type_converters',
142 ], 144 ],
143 'sources': [ 145 'sources': [
144 'common/common_type_converters_unittest.cc', 146 'common/common_type_converters_unittest.cc',
147 'common/service_set_unittest.cc',
145 'message_pump/handle_watcher_unittest.cc', 148 'message_pump/handle_watcher_unittest.cc',
146 'message_pump/message_pump_mojo_unittest.cc', 149 'message_pump/message_pump_mojo_unittest.cc',
147 ], 150 ],
148 }, 151 },
149 { 152 {
150 # GN version: //mojo/environment:chromium 153 # GN version: //mojo/environment:chromium
151 'target_name': 'mojo_environment_chromium', 154 'target_name': 'mojo_environment_chromium',
152 'type': 'static_library', 155 'type': 'static_library',
153 'dependencies': [ 156 'dependencies': [
154 'mojo_environment_chromium_impl', 157 'mojo_environment_chromium_impl',
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 '../build/isolate.gypi', 378 '../build/isolate.gypi',
376 ], 379 ],
377 'sources': [ 380 'sources': [
378 'mojo_common_unittests.isolate', 381 'mojo_common_unittests.isolate',
379 ], 382 ],
380 }, 383 },
381 ], 384 ],
382 }], 385 }],
383 ] 386 ]
384 } 387 }
OLDNEW
« mojo/common/service_set.h ('K') | « mojo/common/service_set_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698