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

Side by Side Diff: ui/ui.gyp

Issue 8508056: Split a part of code managing accelerators from views::FocusManager. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebase Created 9 years, 1 month 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) 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 'target_defaults': { 9 'target_defaults': {
10 'conditions': [ 10 'conditions': [
(...skipping 29 matching lines...) Expand all
40 'defines': [ 40 'defines': [
41 'UI_IMPLEMENTATION', 41 'UI_IMPLEMENTATION',
42 ], 42 ],
43 # Export these dependencies since text_elider.h includes ICU headers. 43 # Export these dependencies since text_elider.h includes ICU headers.
44 'export_dependent_settings': [ 44 'export_dependent_settings': [
45 '../net/net.gyp:net', 45 '../net/net.gyp:net',
46 '../third_party/icu/icu.gyp:icui18n', 46 '../third_party/icu/icu.gyp:icui18n',
47 '../third_party/icu/icu.gyp:icuuc', 47 '../third_party/icu/icu.gyp:icuuc',
48 ], 48 ],
49 'sources': [ 49 'sources': [
50 'base/accelerator_manager.cc',
51 'base/accelerator_manager.h',
50 'base/accessibility/accessibility_types.h', 52 'base/accessibility/accessibility_types.h',
51 'base/accessibility/accessible_text_utils.cc', 53 'base/accessibility/accessible_text_utils.cc',
52 'base/accessibility/accessible_text_utils.h', 54 'base/accessibility/accessible_text_utils.h',
53 'base/accessibility/accessible_view_state.cc', 55 'base/accessibility/accessible_view_state.cc',
54 'base/accessibility/accessible_view_state.h', 56 'base/accessibility/accessible_view_state.h',
55 'base/animation/animation.cc', 57 'base/animation/animation.cc',
56 'base/animation/animation.h', 58 'base/animation/animation.h',
57 'base/animation/animation_container.cc', 59 'base/animation/animation_container.cc',
58 'base/animation/animation_container.h', 60 'base/animation/animation_container.h',
59 'base/animation/animation_container_element.h', 61 'base/animation/animation_container_element.h',
(...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after
635 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \ 637 'shutil.copyfile(\'<(ui_copy_target)\', \'<(ui_copy_dest)\'); ' \
636 'os.chmod(\'<(ui_copy_dest)\', 0700)' 638 'os.chmod(\'<(ui_copy_dest)\', 0700)'
637 ] 639 ]
638 } 640 }
639 ], 641 ],
640 }, 642 },
641 ], 643 ],
642 }], 644 }],
643 ], 645 ],
644 } 646 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698