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

Side by Side Diff: ui/events/events.gyp

Issue 1695783002: IPC::ParamTraits for ui::Event (towards ui::Events over mojo IPC) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicate MUS_COMMON_EXPORT in header and impl 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
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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 '<(DEPTH)/base/base.gyp:base', 305 '<(DEPTH)/base/base.gyp:base',
306 '<(DEPTH)/ipc/ipc.gyp:ipc', 306 '<(DEPTH)/ipc/ipc.gyp:ipc',
307 'events_base', 307 'events_base',
308 ], 308 ],
309 'defines': [ 309 'defines': [
310 'EVENTS_IPC_IMPLEMENTATION', 310 'EVENTS_IPC_IMPLEMENTATION',
311 ], 311 ],
312 'sources': [ 312 'sources': [
313 'ipc/latency_info_param_traits.cc', 313 'ipc/latency_info_param_traits.cc',
314 'ipc/latency_info_param_traits.h', 314 'ipc/latency_info_param_traits.h',
315 'ipc/latency_info_param_traits_macros.h',
315 ], 316 ],
316 }, 317 },
317 { 318 {
318 # GN version: //ui/events:test_support 319 # GN version: //ui/events:test_support
319 'target_name': 'events_test_support', 320 'target_name': 'events_test_support',
320 'type': 'static_library', 321 'type': 'static_library',
321 'dependencies': [ 322 'dependencies': [
322 '<(DEPTH)/base/base.gyp:base', 323 '<(DEPTH)/base/base.gyp:base',
323 '<(DEPTH)/skia/skia.gyp:skia', 324 '<(DEPTH)/skia/skia.gyp:skia',
324 '../gfx/gfx.gyp:gfx_geometry', 325 '../gfx/gfx.gyp:gfx_geometry',
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 'type': 'none', 382 'type': 'none',
382 'variables': { 383 'variables': {
383 'jni_gen_package': 'ui', 384 'jni_gen_package': 'ui',
384 'input_java_class': 'android/view/MotionEvent.class', 385 'input_java_class': 'android/view/MotionEvent.class',
385 }, 386 },
386 'includes': [ '../../build/jar_file_jni_generator.gypi' ], 387 'includes': [ '../../build/jar_file_jni_generator.gypi' ],
387 }, 388 },
388 ], 389 ],
389 }], 390 }],
390 ], 391 ],
391 } 392 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698