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

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

Issue 251543003: Unified Gesture Recognizer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows linking 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 (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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after
255 'dependencies': [ 255 'dependencies': [
256 '../../base/base.gyp:test_support_base', 256 '../../base/base.gyp:test_support_base',
257 '../../skia/skia.gyp:skia', 257 '../../skia/skia.gyp:skia',
258 '../../testing/gtest.gyp:gtest', 258 '../../testing/gtest.gyp:gtest',
259 '../base/ui_base.gyp:ui_base', 259 '../base/ui_base.gyp:ui_base',
260 '../base/ui_base.gyp:ui_base_test_support', 260 '../base/ui_base.gyp:ui_base_test_support',
261 '../compositor/compositor.gyp:compositor', 261 '../compositor/compositor.gyp:compositor',
262 '../compositor/compositor.gyp:compositor_test_support', 262 '../compositor/compositor.gyp:compositor_test_support',
263 '../events/events.gyp:events', 263 '../events/events.gyp:events',
264 '../events/events.gyp:events_base', 264 '../events/events.gyp:events_base',
265 '../events/events.gyp:gesture_detection',
265 '../gfx/gfx.gyp:gfx', 266 '../gfx/gfx.gyp:gfx',
266 '../gfx/gfx.gyp:gfx_geometry', 267 '../gfx/gfx.gyp:gfx_geometry',
267 '../gl/gl.gyp:gl', 268 '../gl/gl.gyp:gl',
268 'aura_test_support', 269 'aura_test_support',
269 'aura', 270 'aura',
270 ], 271 ],
271 'include_dirs': [ 272 'include_dirs': [
272 '..', 273 '..',
273 ], 274 ],
274 'sources': [ 275 'sources': [
(...skipping 14 matching lines...) Expand all
289 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { 290 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', {
290 'dependencies': [ 291 'dependencies': [
291 # See http://crbug.com/162998#c4 for why this is needed. 292 # See http://crbug.com/162998#c4 for why this is needed.
292 '../../base/allocator/allocator.gyp:allocator', 293 '../../base/allocator/allocator.gyp:allocator',
293 ], 294 ],
294 }], 295 }],
295 ], 296 ],
296 }, 297 },
297 ], 298 ],
298 } 299 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698