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

Side by Side Diff: mojo/mojo.gyp

Issue 60803002: Simpler bindings, fewer files! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move more to the .cc file Created 7 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 | Annotate | Revision Log
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 { 246 {
247 'target_name': 'mojo_bindings_test', 247 'target_name': 'mojo_bindings_test',
248 'type': 'executable', 248 'type': 'executable',
249 'include_dirs': [ 249 'include_dirs': [
250 '..' 250 '..'
251 ], 251 ],
252 'dependencies': [ 252 'dependencies': [
253 'mojo_bindings', 253 'mojo_bindings',
254 ], 254 ],
255 'sources': [ 255 'sources': [
256 'public/bindings/sample/generated/sample_bar.cc', 256 'public/bindings/sample/generated/sample_service.cc',
257 'public/bindings/sample/generated/sample_bar.h',
258 'public/bindings/sample/generated/sample_bar_serialization.cc',
259 'public/bindings/sample/generated/sample_bar_serialization.h',
260 'public/bindings/sample/generated/sample_foo.cc',
261 'public/bindings/sample/generated/sample_foo.h',
262 'public/bindings/sample/generated/sample_foo_serialization.cc',
263 'public/bindings/sample/generated/sample_foo_serialization.h',
264 'public/bindings/sample/generated/sample_service.h', 257 'public/bindings/sample/generated/sample_service.h',
265 'public/bindings/sample/generated/sample_service_proxy.cc', 258 'public/bindings/sample/generated/sample_service_internal.h',
266 'public/bindings/sample/generated/sample_service_serialization.cc',
267 'public/bindings/sample/generated/sample_service_serialization.h',
268 'public/bindings/sample/generated/sample_service_stub.cc',
269 'public/bindings/sample/sample_test.cc', 259 'public/bindings/sample/sample_test.cc',
270 ], 260 ],
271 }, 261 },
272 { 262 {
273 'target_name': 'native_viewport', 263 'target_name': 'native_viewport',
274 'type': 'static_library', 264 'type': 'static_library',
275 'dependencies': [ 265 'dependencies': [
276 '../base/base.gyp:base', 266 '../base/base.gyp:base',
277 '../gpu/gpu.gyp:command_buffer_service', 267 '../gpu/gpu.gyp:command_buffer_service',
278 '../gpu/gpu.gyp:gles2_implementation', 268 '../gpu/gpu.gyp:gles2_implementation',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', 368 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk',
379 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', 369 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res',
380 'native_lib_target': 'libmojo_shell', 370 'native_lib_target': 'libmojo_shell',
381 }, 371 },
382 'includes': [ '../build/java_apk.gypi' ], 372 'includes': [ '../build/java_apk.gypi' ],
383 } 373 }
384 ], 374 ],
385 }], 375 }],
386 ], 376 ],
387 } 377 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698