| 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 28 matching lines...) Expand all Loading... |
| 39 ['exclude', '_(touch)\\.cc$'], | 39 ['exclude', '_(touch)\\.cc$'], |
| 40 ]}], | 40 ]}], |
| 41 ], | 41 ], |
| 42 }, | 42 }, |
| 43 'targets': [ | 43 'targets': [ |
| 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 '../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 'sources': [ | 54 'sources': [ |
| 55 'animation/animation.cc', | 55 'animation/animation.cc', |
| 56 'animation/animation.h', | 56 'animation/animation.h', |
| 57 'animation/animation_container.cc', | 57 'animation/animation_container.cc', |
| 58 'animation/animation_container.h', | 58 'animation/animation_container.h', |
| 59 'animation/animation_container_element.h', | 59 'animation/animation_container_element.h', |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 ], | 110 ], |
| 111 }, | 111 }, |
| 112 ], | 112 ], |
| 113 } | 113 } |
| 114 | 114 |
| 115 # Local Variables: | 115 # Local Variables: |
| 116 # tab-width:2 | 116 # tab-width:2 |
| 117 # indent-tabs-mode:nil | 117 # indent-tabs-mode:nil |
| 118 # End: | 118 # End: |
| 119 # vim: set expandtab tabstop=2 shiftwidth=2: | 119 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |