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

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

Issue 101933004: Eager Gesture Recognizer (WIP) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Starting work on Android. Created 6 years, 11 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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 'sources': [ 237 'sources': [
238 'bench/bench_main.cc', 238 'bench/bench_main.cc',
239 ], 239 ],
240 }, 240 },
241 { 241 {
242 'target_name': 'aura_unittests', 242 'target_name': 'aura_unittests',
243 'type': 'executable', 243 'type': 'executable',
244 'dependencies': [ 244 'dependencies': [
245 '../../base/base.gyp:test_support_base', 245 '../../base/base.gyp:test_support_base',
246 '../../skia/skia.gyp:skia', 246 '../../skia/skia.gyp:skia',
247 '../../testing/gmock.gyp:gmock',
247 '../../testing/gtest.gyp:gtest', 248 '../../testing/gtest.gyp:gtest',
248 '../compositor/compositor.gyp:compositor', 249 '../compositor/compositor.gyp:compositor',
249 '../compositor/compositor.gyp:compositor_test_support', 250 '../compositor/compositor.gyp:compositor_test_support',
250 '../events/events.gyp:events', 251 '../events/events.gyp:events',
251 '../events/events.gyp:events_base', 252 '../events/events.gyp:events_base',
252 '../gfx/gfx.gyp:gfx', 253 '../gfx/gfx.gyp:gfx',
253 '../gfx/gfx.gyp:gfx_geometry', 254 '../gfx/gfx.gyp:gfx_geometry',
254 '../gl/gl.gyp:gl', 255 '../gl/gl.gyp:gl',
255 '../ui.gyp:ui', 256 '../ui.gyp:ui',
256 '../ui_unittests.gyp:ui_test_support', 257 '../ui_unittests.gyp:ui_test_support',
257 'aura_test_support', 258 'aura_test_support',
258 'aura', 259 'aura',
259 ], 260 ],
260 'include_dirs': [ 261 'include_dirs': [
261 '..', 262 '..',
262 ], 263 ],
263 'sources': [ 264 'sources': [
265 '../events/gestures/test/eager_gesture_recognition_test_base.cc',
266 '../events/gestures/test/eager_gesture_recognition_test_base.h',
267 'gestures/eager_gesture_recognition_aura_unittest.cc',
264 'gestures/gesture_recognizer_unittest.cc', 268 'gestures/gesture_recognizer_unittest.cc',
265 'root_window_host_x11_unittest.cc', 269 'root_window_host_x11_unittest.cc',
266 'root_window_unittest.cc', 270 'root_window_unittest.cc',
267 'test/run_all_unittests.cc', 271 'test/run_all_unittests.cc',
268 'window_targeter_unittest.cc', 272 'window_targeter_unittest.cc',
269 'window_unittest.cc', 273 'window_unittest.cc',
270 ], 274 ],
271 'conditions': [ 275 'conditions': [
272 # osmesa GL implementation is used on linux. 276 # osmesa GL implementation is used on linux.
273 ['OS=="linux"', { 277 ['OS=="linux"', {
274 'dependencies': [ 278 'dependencies': [
275 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa', 279 '<(DEPTH)/third_party/mesa/mesa.gyp:osmesa',
276 ], 280 ],
277 }], 281 }],
278 ['OS=="linux" and linux_use_tcmalloc==1', { 282 ['OS=="linux" and linux_use_tcmalloc==1', {
279 'dependencies': [ 283 'dependencies': [
280 # See http://crbug.com/162998#c4 for why this is needed. 284 # See http://crbug.com/162998#c4 for why this is needed.
281 '../../base/allocator/allocator.gyp:allocator', 285 '../../base/allocator/allocator.gyp:allocator',
282 ], 286 ],
283 }], 287 }],
284 ], 288 ],
285 }, 289 },
286 ], 290 ],
287 } 291 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698