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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'ui_base', | 8 'target_name': 'ui_base', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'dependencies': [ | 10 'dependencies': [ |
11 '../base/base.gyp:base', | 11 '../base/base.gyp:base', |
12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', | 12 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic
_annotations', |
13 '../build/temp_gyp/googleurl.gyp:googleurl', | 13 '../build/temp_gyp/googleurl.gyp:googleurl', |
14 '../net/net.gyp:net', | 14 '../net/net.gyp:net', |
15 '../skia/skia.gyp:skia', | 15 '../skia/skia.gyp:skia', |
16 '../third_party/icu/icu.gyp:icui18n', | 16 '../third_party/icu/icu.gyp:icui18n', |
17 '../third_party/icu/icu.gyp:icuuc', | 17 '../third_party/icu/icu.gyp:icuuc', |
18 'base/strings/ui_strings.gyp:ui_strings', | 18 'base/strings/ui_strings.gyp:ui_strings', |
19 'ui_gfx', | 19 'ui_gfx', |
20 ], | 20 ], |
21 # Export these dependencies since text_elider.h includes ICU headers. | 21 # Export these dependencies since text_elider.h includes ICU headers. |
22 'export_dependent_settings': [ | 22 'export_dependent_settings': [ |
| 23 '../net/net.gyp:net', |
23 '../third_party/icu/icu.gyp:icui18n', | 24 '../third_party/icu/icu.gyp:icui18n', |
24 '../third_party/icu/icu.gyp:icuuc', | 25 '../third_party/icu/icu.gyp:icuuc', |
25 ], | 26 ], |
26 'sources': [ | 27 'sources': [ |
27 'base/accessibility/accessibility_types.h', | 28 'base/accessibility/accessibility_types.h', |
28 'base/accessibility/accessible_view_state.cc', | 29 'base/accessibility/accessible_view_state.cc', |
29 'base/accessibility/accessible_view_state.h', | 30 'base/accessibility/accessible_view_state.h', |
30 'base/animation/animation.cc', | 31 'base/animation/animation.cc', |
31 'base/animation/animation.h', | 32 'base/animation/animation.h', |
32 'base/animation/animation_container.cc', | 33 'base/animation/animation_container.cc', |
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 ], | 268 ], |
268 }], | 269 }], |
269 ], | 270 ], |
270 } | 271 } |
271 | 272 |
272 # Local Variables: | 273 # Local Variables: |
273 # tab-width:2 | 274 # tab-width:2 |
274 # indent-tabs-mode:nil | 275 # indent-tabs-mode:nil |
275 # End: | 276 # End: |
276 # vim: set expandtab tabstop=2 shiftwidth=2: | 277 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |