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

Side by Side Diff: mojo/mojo_public.gyp

Issue 1772503002: Revert of [mojo-bindings] Use Watch API instead of MessagePumpMojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/mojo_edk_tests.gyp ('k') | mojo/mojo_variables.gypi » ('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 { 5 {
6 'includes': [ 6 'includes': [
7 'mojo_variables.gypi', 7 'mojo_variables.gypi',
8 ], 8 ],
9 'target_defaults' : { 9 'target_defaults' : {
10 'include_dirs': [ 10 'include_dirs': [
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 'public/c/system/functions.h', 67 'public/c/system/functions.h',
68 'public/c/system/macros.h', 68 'public/c/system/macros.h',
69 'public/c/system/message_pipe.h', 69 'public/c/system/message_pipe.h',
70 'public/c/system/system_export.h', 70 'public/c/system/system_export.h',
71 'public/c/system/types.h', 71 'public/c/system/types.h',
72 'public/c/system/wait_set.h', 72 'public/c/system/wait_set.h',
73 ], 73 ],
74 }, 74 },
75 { 75 {
76 # GN version: //mojo/public/cpp/system 76 # GN version: //mojo/public/cpp/system
77 'target_name': 'mojo_cpp_system', 77 'target_name': 'mojo_system_cpp_headers',
78 'type': 'static_library', 78 'type': 'none',
79 'sources': [ 79 'sources': [
80 'public/cpp/system/buffer.h', 80 'public/cpp/system/buffer.h',
81 'public/cpp/system/core.h', 81 'public/cpp/system/core.h',
82 'public/cpp/system/data_pipe.h', 82 'public/cpp/system/data_pipe.h',
83 'public/cpp/system/functions.h', 83 'public/cpp/system/functions.h',
84 'public/cpp/system/handle.h', 84 'public/cpp/system/handle.h',
85 'public/cpp/system/macros.h', 85 'public/cpp/system/macros.h',
86 'public/cpp/system/message_pipe.h', 86 'public/cpp/system/message_pipe.h',
87 'public/cpp/system/watcher.cc',
88 'public/cpp/system/watcher.h',
89 ], 87 ],
90 'dependencies': [ 88 'dependencies': [
91 '../base/base.gyp:base',
92 'mojo_system_headers', 89 'mojo_system_headers',
93 ], 90 ],
94 }, 91 },
95 { 92 {
96 # GN version: //mojo/public/cpp/bindings 93 # GN version: //mojo/public/cpp/bindings
97 'target_name': 'mojo_cpp_bindings', 94 'target_name': 'mojo_cpp_bindings',
98 'type': 'static_library', 95 'type': 'static_library',
99 'include_dirs': [ 96 'include_dirs': [
100 '..' 97 '..'
101 ], 98 ],
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'public/cpp/bindings/no_interface.h', 180 'public/cpp/bindings/no_interface.h',
184 'public/cpp/bindings/stl_converters.h', 181 'public/cpp/bindings/stl_converters.h',
185 'public/cpp/bindings/string.h', 182 'public/cpp/bindings/string.h',
186 'public/cpp/bindings/strong_binding.h', 183 'public/cpp/bindings/strong_binding.h',
187 'public/cpp/bindings/type_converter.h', 184 'public/cpp/bindings/type_converter.h',
188 # This comes from the mojo_interface_bindings_cpp_sources dependency. 185 # This comes from the mojo_interface_bindings_cpp_sources dependency.
189 '>@(mojom_generated_sources)', 186 '>@(mojom_generated_sources)',
190 ], 187 ],
191 'dependencies': [ 188 'dependencies': [
192 '../base/base.gyp:base', 189 '../base/base.gyp:base',
193 'mojo_cpp_system', 190 'mojo_message_pump_lib',
194 'mojo_interface_bindings_cpp_sources', 191 'mojo_interface_bindings_cpp_sources',
195 ], 192 ],
196 }, 193 },
197 { 194 {
198 # GN version: //mojo/message_pump 195 # GN version: //mojo/message_pump
199 'target_name': 'mojo_message_pump_lib', 196 'target_name': 'mojo_message_pump_lib',
200 'type': '<(component)', 197 'type': '<(component)',
201 'defines': [ 198 'defines': [
202 'MOJO_MESSAGE_PUMP_IMPLEMENTATION', 199 'MOJO_MESSAGE_PUMP_IMPLEMENTATION',
203 ], 200 ],
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
549 'mojo_interface_bindings_java_sources', 546 'mojo_interface_bindings_java_sources',
550 'mojo_public_java', 547 'mojo_public_java',
551 '<(DEPTH)/base/base.gyp:base_java', 548 '<(DEPTH)/base/base.gyp:base_java',
552 ], 549 ],
553 'includes': [ '../build/java.gypi' ], 550 'includes': [ '../build/java.gypi' ],
554 }, 551 },
555 ], 552 ],
556 }], 553 }],
557 ], 554 ],
558 } 555 }
OLDNEW
« no previous file with comments | « mojo/mojo_edk_tests.gyp ('k') | mojo/mojo_variables.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698