OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |