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

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

Issue 26695007: aura: Allow creating content_shell without views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 'x/events_x_utils.h', 85 'x/events_x_utils.h',
86 'x/touch_factory_x11.cc', 86 'x/touch_factory_x11.cc',
87 'x/touch_factory_x11.h', 87 'x/touch_factory_x11.h',
88 ], 88 ],
89 'conditions': [ 89 'conditions': [
90 ['use_aura==0 and toolkit_views==0', { 90 ['use_aura==0 and toolkit_views==0', {
91 'sources/': [ 91 'sources/': [
92 ['exclude', '^gestures/*'], 92 ['exclude', '^gestures/*'],
93 ] 93 ]
94 }], 94 }],
95 ['toolkit_views==0', { 95 ['toolkit_views==0 and use_aura==0', {
96 'sources!': [ 96 'sources!': [
97 'event.cc', 97 'event.cc',
98 'event.h', 98 'event.h',
99 'event_dispatcher.cc', 99 'event_dispatcher.cc',
100 'event_dispatcher.h', 100 'event_dispatcher.h',
101 'event_handler.cc', 101 'event_handler.cc',
102 'event_handler.h', 102 'event_handler.h',
103 'event_target.cc', 103 'event_target.cc',
104 'event_target.h', 104 'event_target.h',
105 ], 105 ],
106 }], 106 }],
107 ['OS=="android"', { 107 ['OS=="android"', {
108 'sources!': [ 108 'sources!': [
109 'event_utils.cc', 109 'event_utils.cc',
110 'keycodes/keyboard_code_conversion.cc', 110 'keycodes/keyboard_code_conversion.cc',
111 ], 111 ],
112 }], 112 }],
113 ['use_x11==1', { 113 ['use_x11==1', {
114 'dependencies': [ 114 'dependencies': [
115 '<(DEPTH)/build/linux/system.gyp:x11', 115 '<(DEPTH)/build/linux/system.gyp:x11',
116 ], 116 ],
117 }], 117 }],
118 ], 118 ],
119 } 119 }
120 ], 120 ],
121 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698