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

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

Issue 255823009: [WIP] ui/window: Master CL. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 'x/device_data_manager.h', 56 'x/device_data_manager.h',
57 'x/device_list_cache_x.cc', 57 'x/device_list_cache_x.cc',
58 'x/device_list_cache_x.h', 58 'x/device_list_cache_x.h',
59 'x/touch_factory_x11.cc', 59 'x/touch_factory_x11.cc',
60 'x/touch_factory_x11.h', 60 'x/touch_factory_x11.h',
61 ], 61 ],
62 'conditions': [ 62 'conditions': [
63 ['use_x11==1', { 63 ['use_x11==1', {
64 'dependencies': [ 64 'dependencies': [
65 '../../build/linux/system.gyp:x11', 65 '../../build/linux/system.gyp:x11',
66 '../gfx/gfx.gyp:gfx_x11', 66 '../gfx/x/gfx_x11.gyp:gfx_x11',
67 ], 67 ],
68 }], 68 }],
69 ], 69 ],
70 }, 70 },
71 { 71 {
72 'target_name': 'events', 72 'target_name': 'events',
73 'type': '<(component)', 73 'type': '<(component)',
74 'dependencies': [ 74 'dependencies': [
75 '<(DEPTH)/base/base.gyp:base', 75 '<(DEPTH)/base/base.gyp:base',
76 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', 76 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 'linux/text_edit_key_bindings_delegate_auralinux.cc', 178 'linux/text_edit_key_bindings_delegate_auralinux.cc',
179 'linux/text_edit_key_bindings_delegate_auralinux.h', 179 'linux/text_edit_key_bindings_delegate_auralinux.h',
180 ], 180 ],
181 }], 181 }],
182 ['use_x11==1', { 182 ['use_x11==1', {
183 'sources!': [ 183 'sources!': [
184 'platform/platform_event_source_stub.cc', 184 'platform/platform_event_source_stub.cc',
185 ], 185 ],
186 'dependencies': [ 186 'dependencies': [
187 '../../build/linux/system.gyp:x11', 187 '../../build/linux/system.gyp:x11',
188 '../gfx/gfx.gyp:gfx_x11', 188 '../gfx/x/gfx_x11.gyp:gfx_x11',
189 ], 189 ],
190 }], 190 }],
191 ['use_glib==1', { 191 ['use_glib==1', {
192 'dependencies': [ 192 'dependencies': [
193 '../../build/linux/system.gyp:glib', 193 '../../build/linux/system.gyp:glib',
194 ], 194 ],
195 'sources!': [ 195 'sources!': [
196 'platform/x11/x11_event_source_libevent.cc', 196 'platform/x11/x11_event_source_libevent.cc',
197 ], 197 ],
198 }, { 198 }, {
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'test/test_event_handler.h', 304 'test/test_event_handler.h',
305 'test/test_event_processor.cc', 305 'test/test_event_processor.cc',
306 'test/test_event_processor.h', 306 'test/test_event_processor.h',
307 'test/test_event_target.cc', 307 'test/test_event_target.cc',
308 'test/test_event_target.h', 308 'test/test_event_target.h',
309 ], 309 ],
310 'conditions': [ 310 'conditions': [
311 ['use_x11==1', { 311 ['use_x11==1', {
312 'dependencies': [ 312 'dependencies': [
313 '../../build/linux/system.gyp:x11', 313 '../../build/linux/system.gyp:x11',
314 '../gfx/gfx.gyp:gfx_x11', 314 '../gfx/x/gfx_x11.gyp:gfx_x11',
315 ], 315 ],
316 }], 316 }],
317 ['OS=="ios"', { 317 ['OS=="ios"', {
318 # The cocoa files don't apply to iOS. 318 # The cocoa files don't apply to iOS.
319 'sources/': [['exclude', 'cocoa']], 319 'sources/': [['exclude', 'cocoa']],
320 }], 320 }],
321 ], 321 ],
322 }, 322 },
323 { 323 {
324 'target_name': 'events_unittests', 324 'target_name': 'events_unittests',
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 ], 392 ],
393 'variables': { 393 'variables': {
394 'test_suite_name': 'events_unittests', 394 'test_suite_name': 'events_unittests',
395 }, 395 },
396 'includes': [ '../../build/apk_test.gypi' ], 396 'includes': [ '../../build/apk_test.gypi' ],
397 }, 397 },
398 ], 398 ],
399 }], 399 }],
400 ], 400 ],
401 } 401 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698