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

Side by Side Diff: ui/ui.gyp

Issue 8907005: Add support for new scroll valuators coming from CMT (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup and comments Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 'base/win/shell.cc', 227 'base/win/shell.cc',
228 'base/win/shell.h', 228 'base/win/shell.h',
229 'base/win/window_impl.cc', 229 'base/win/window_impl.cc',
230 'base/win/window_impl.h', 230 'base/win/window_impl.h',
231 'base/x/active_window_watcher_x.cc', 231 'base/x/active_window_watcher_x.cc',
232 'base/x/active_window_watcher_x.h', 232 'base/x/active_window_watcher_x.h',
233 'base/x/active_window_watcher_x_observer.h', 233 'base/x/active_window_watcher_x_observer.h',
234 'base/x/events_x.cc', 234 'base/x/events_x.cc',
235 'base/x/root_window_property_watcher_x.cc', 235 'base/x/root_window_property_watcher_x.cc',
236 'base/x/root_window_property_watcher_x.h', 236 'base/x/root_window_property_watcher_x.h',
237 'base/x/scroll_factory.h',
238 'base/x/scroll_factory.cc',
237 'base/x/work_area_watcher_x.cc', 239 'base/x/work_area_watcher_x.cc',
238 'base/x/work_area_watcher_x.h', 240 'base/x/work_area_watcher_x.h',
239 'base/x/work_area_watcher_x_observer.h', 241 'base/x/work_area_watcher_x_observer.h',
240 'base/x/x11_util.cc', 242 'base/x/x11_util.cc',
241 'base/x/x11_util.h', 243 'base/x/x11_util.h',
242 'base/x/x11_util_internal.h', 244 'base/x/x11_util_internal.h',
243 'gfx/blit.cc', 245 'gfx/blit.cc',
244 'gfx/blit.h', 246 'gfx/blit.h',
245 'gfx/brush.h', 247 'gfx/brush.h',
246 'gfx/canvas.cc', 248 'gfx/canvas.cc',
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
489 'gfx/icon_util.cc', 491 'gfx/icon_util.cc',
490 'gfx/icon_util.h', 492 'gfx/icon_util.h',
491 'gfx/native_theme_win.cc', 493 'gfx/native_theme_win.cc',
492 'gfx/native_theme_win.h', 494 'gfx/native_theme_win.h',
493 'gfx/win_util.cc', 495 'gfx/win_util.cc',
494 'gfx/win_util.h', 496 'gfx/win_util.h',
495 ], 497 ],
496 'sources!': [ 498 'sources!': [
497 'base/touch/touch_factory.cc', 499 'base/touch/touch_factory.cc',
498 'base/touch/touch_factory.h', 500 'base/touch/touch_factory.h',
501 'base/x/scroll_factory.h',
502 'base/x/scroll_factory.cc',
499 'gfx/pango_util.h', 503 'gfx/pango_util.h',
500 'gfx/pango_util.cc', 504 'gfx/pango_util.cc',
501 'gfx/platform_font_pango.cc', 505 'gfx/platform_font_pango.cc',
502 'gfx/platform_font_pango.h', 506 'gfx/platform_font_pango.h',
503 ], 507 ],
504 'include_dirs': [ 508 'include_dirs': [
505 '../', 509 '../',
506 '../third_party/wtl/include', 510 '../third_party/wtl/include',
507 ], 511 ],
508 'msvs_settings': { 512 'msvs_settings': {
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
676 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 680 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
677 'os.chmod(\'<(ui_copy_dest)\', 0700)' 681 'os.chmod(\'<(ui_copy_dest)\', 0700)'
678 ] 682 ]
679 } 683 }
680 ], 684 ],
681 }, 685 },
682 ], 686 ],
683 }], 687 }],
684 ], 688 ],
685 } 689 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698