OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 { |
| 6 'targets': [ |
| 7 { |
| 8 'target_name': 'ui_base', |
| 9 'type': '<(library)', |
| 10 'dependencies': [ |
| 11 '../base/base.gyp:base', |
| 12 '../skia/skia.gyp:skia', |
| 13 '../third_party/icu/icu.gyp:icui18n', |
| 14 '../third_party/icu/icu.gyp:icuuc', |
| 15 'ui_gfx', |
| 16 ], |
| 17 # Export these dependencies since text_elider.h includes ICU headers. |
| 18 'export_dependent_settings': [ |
| 19 '../third_party/icu/icu.gyp:icui18n', |
| 20 '../third_party/icu/icu.gyp:icuuc', |
| 21 ], |
| 22 'sources': [ |
| 23 'base/accessibility/accessibility_types.h', |
| 24 'base/accessibility/accessible_view_state.h', |
| 25 'base/accessibility/accessible_view_state.cc', |
| 26 'base/animation/animation.cc', |
| 27 'base/animation/animation.h', |
| 28 'base/animation/animation_container.cc', |
| 29 'base/animation/animation_container.h', |
| 30 'base/animation/animation_container_element.h', |
| 31 'base/animation/animation_container_observer.h', |
| 32 'base/animation/animation_delegate.h', |
| 33 'base/animation/linear_animation.cc', |
| 34 'base/animation/linear_animation.h', |
| 35 'base/animation/multi_animation.cc', |
| 36 'base/animation/multi_animation.h', |
| 37 'base/animation/slide_animation.cc', |
| 38 'base/animation/slide_animation.h', |
| 39 'base/animation/throb_animation.cc', |
| 40 'base/animation/throb_animation.h', |
| 41 'base/animation/tween.cc', |
| 42 'base/animation/tween.h', |
| 43 'base/clipboard/clipboard.cc', |
| 44 'base/clipboard/clipboard.h', |
| 45 'base/clipboard/clipboard_linux.cc', |
| 46 'base/clipboard/clipboard_mac.mm', |
| 47 'base/clipboard/clipboard_util_win.cc', |
| 48 'base/clipboard/clipboard_util_win.h', |
| 49 'base/clipboard/clipboard_win.cc', |
| 50 'base/clipboard/scoped_clipboard_writer.cc', |
| 51 'base/clipboard/scoped_clipboard_writer.h', |
| 52 'base/range/range.cc', |
| 53 'base/range/range.h', |
| 54 'base/range/range.mm', |
| 55 ], |
| 56 'conditions': [ |
| 57 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
| 58 'dependencies': [ |
| 59 '../build/linux/system.gyp:gtk', |
| 60 '../build/linux/system.gyp:x11', |
| 61 '../build/linux/system.gyp:xext', |
| 62 ], |
| 63 }], |
| 64 ], |
| 65 }, |
| 66 ], |
| 67 } |
| 68 |
| 69 # Local Variables: |
| 70 # tab-width:2 |
| 71 # indent-tabs-mode:nil |
| 72 # End: |
| 73 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |