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

Side by Side Diff: ui/ui.gyp

Issue 9773024: This patch implements Chromium's Aura gesture recognizer in terms of utouch-grail and utouch-frame … (Closed) Base URL: https://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 8 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 (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 'includes': [ 9 'includes': [
10 'ui_resources.gypi', 10 'ui_resources.gypi',
11 ], 11 ],
12 'targets': [ 12 'targets': [
13 { 13 {
14 'target_name': 'ui', 14 'target_name': 'ui',
15 'type': '<(component)', 15 'type': '<(component)',
16 'variables': { 'enable_wexit_time_destructors': 1, }, 16 'variables': { 'enable_wexit_time_destructors': 1, },
17 'includes': [ 17 'includes': [
18 'base/ime/ime.gypi', 18 'base/ime/ime.gypi',
19 ], 19 ],
20 'dependencies': [ 20 'dependencies': [
21 '../base/base.gyp:base', 21 '../base/base.gyp:base',
22 '../base/base.gyp:base_i18n', 22 '../base/base.gyp:base_i18n',
23 '../base/base.gyp:base_static', 23 '../base/base.gyp:base_static',
24 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 24 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
25 '../build/linux/system.gyp:frame',
tdresser 2012/03/29 17:44:38 Alphabetize
26 '../build/linux/system.gyp:grail',
25 '../build/temp_gyp/googleurl.gyp:googleurl', 27 '../build/temp_gyp/googleurl.gyp:googleurl',
26 '../net/net.gyp:net', 28 '../net/net.gyp:net',
27 '../skia/skia.gyp:skia', 29 '../skia/skia.gyp:skia',
28 '../third_party/icu/icu.gyp:icui18n', 30 '../third_party/icu/icu.gyp:icui18n',
29 '../third_party/icu/icu.gyp:icuuc', 31 '../third_party/icu/icu.gyp:icuuc',
30 '../third_party/libpng/libpng.gyp:libpng', 32 '../third_party/libpng/libpng.gyp:libpng',
31 '../third_party/zlib/zlib.gyp:zlib', 33 '../third_party/zlib/zlib.gyp:zlib',
32 'base/strings/ui_strings.gyp:ui_strings', 34 'base/strings/ui_strings.gyp:ui_strings',
33 'gfx_resources', 35 'gfx_resources',
34 '<(libjpeg_gyp_path):libjpeg', 36 '<(libjpeg_gyp_path):libjpeg',
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'base/text/bytes_formatting.cc', 208 'base/text/bytes_formatting.cc',
207 'base/text/bytes_formatting.h', 209 'base/text/bytes_formatting.h',
208 'base/text/text_elider.cc', 210 'base/text/text_elider.cc',
209 'base/text/text_elider.h', 211 'base/text/text_elider.h',
210 'base/text/utf16_indexing.cc', 212 'base/text/utf16_indexing.cc',
211 'base/text/utf16_indexing.h', 213 'base/text/utf16_indexing.h',
212 'base/theme_provider.cc', 214 'base/theme_provider.cc',
213 'base/theme_provider.h', 215 'base/theme_provider.h',
214 'base/touch/touch_factory.cc', 216 'base/touch/touch_factory.cc',
215 'base/touch/touch_factory.h', 217 'base/touch/touch_factory.h',
218 'base/touch/axis.h',
tdresser 2012/03/29 17:44:38 Alphabetize
219 'base/touch/axis.cc',
220 'base/touch/multi_touch_device.h',
221 'base/touch/multi_touch_device.cc',
222 'base/touch/multi_touch_device_x11.h',
223 'base/touch/multi_touch_device_x11.cc',
216 'base/ui_base_exports.cc', 224 'base/ui_base_exports.cc',
217 'base/ui_base_paths.cc', 225 'base/ui_base_paths.cc',
218 'base/ui_base_paths.h', 226 'base/ui_base_paths.h',
219 'base/ui_base_switches.cc', 227 'base/ui_base_switches.cc',
220 'base/ui_base_switches.h', 228 'base/ui_base_switches.h',
221 'base/ui_base_types.h', 229 'base/ui_base_types.h',
222 'base/ui_export.h', 230 'base/ui_export.h',
223 'base/view_prop.cc', 231 'base/view_prop.cc',
224 'base/view_prop.h', 232 'base/view_prop.h',
225 'base/wayland/events_wayland.cc', 233 'base/wayland/events_wayland.cc',
(...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after
694 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 702 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
695 'os.chmod(\'<(ui_copy_dest)\', 0700)' 703 'os.chmod(\'<(ui_copy_dest)\', 0700)'
696 ] 704 ]
697 } 705 }
698 ], 706 ],
699 }, 707 },
700 ], 708 ],
701 }], 709 }],
702 ], 710 ],
703 } 711 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698