| 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 'sources/': [ | 10 'sources/': [ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 { | 44 { |
| 45 'target_name': 'ui_base', | 45 'target_name': 'ui_base', |
| 46 'type': '<(library)', | 46 'type': '<(library)', |
| 47 'dependencies': [ | 47 'dependencies': [ |
| 48 '../base/base.gyp:base', | 48 '../base/base.gyp:base', |
| 49 '../ui/gfx/gfx.gyp:gfx', | 49 '../ui/gfx/gfx.gyp:gfx', |
| 50 '../skia/skia.gyp:skia', | 50 '../skia/skia.gyp:skia', |
| 51 '../third_party/icu/icu.gyp:icui18n', | 51 '../third_party/icu/icu.gyp:icui18n', |
| 52 '../third_party/icu/icu.gyp:icuuc', | 52 '../third_party/icu/icu.gyp:icuuc', |
| 53 ], | 53 ], |
| 54 # Export these dependencies since text_elider.h includes ICU headers. |
| 55 'export_dependent_settings': [ |
| 56 '../third_party/icu/icu.gyp:icui18n', |
| 57 '../third_party/icu/icu.gyp:icuuc', |
| 58 ], |
| 54 'sources': [ | 59 'sources': [ |
| 55 'animation/animation.cc', | 60 'animation/animation.cc', |
| 56 'animation/animation.h', | 61 'animation/animation.h', |
| 57 'animation/animation_container.cc', | 62 'animation/animation_container.cc', |
| 58 'animation/animation_container.h', | 63 'animation/animation_container.h', |
| 59 'animation/animation_container_element.h', | 64 'animation/animation_container_element.h', |
| 60 'animation/animation_container_observer.h', | 65 'animation/animation_container_observer.h', |
| 61 'animation/animation_delegate.h', | 66 'animation/animation_delegate.h', |
| 62 'animation/linear_animation.cc', | 67 'animation/linear_animation.cc', |
| 63 'animation/linear_animation.h', | 68 'animation/linear_animation.h', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 ], | 115 ], |
| 111 }, | 116 }, |
| 112 ], | 117 ], |
| 113 } | 118 } |
| 114 | 119 |
| 115 # Local Variables: | 120 # Local Variables: |
| 116 # tab-width:2 | 121 # tab-width:2 |
| 117 # indent-tabs-mode:nil | 122 # indent-tabs-mode:nil |
| 118 # End: | 123 # End: |
| 119 # vim: set expandtab tabstop=2 shiftwidth=2: | 124 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |