Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'includes': [ | 9 'includes': [ |
| 10 'shell_dialogs.gypi', | |
| 11 'ui_resources.gypi', | 10 'ui_resources.gypi', |
| 12 'ui_unittests.gypi', | |
| 13 ], | 11 ], |
| 14 'targets': [ | 12 'targets': [ |
| 15 { | 13 { |
| 16 'target_name': 'ui', | 14 'target_name': 'ui', |
| 17 'type': '<(component)', | 15 'type': '<(component)', |
| 18 'dependencies': [ | 16 'dependencies': [ |
| 19 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 20 '../base/base.gyp:base_i18n', | 18 '../base/base.gyp:base_i18n', |
| 21 '../base/base.gyp:base_static', | 19 '../base/base.gyp:base_static', |
| 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', | 20 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 330 ['include', '^base/l10n/l10n_util_mac\\.mm$'], | 328 ['include', '^base/l10n/l10n_util_mac\\.mm$'], |
| 331 ], | 329 ], |
| 332 }], | 330 }], |
| 333 ], | 331 ], |
| 334 'conditions': [ | 332 'conditions': [ |
| 335 ['OS!="ios"', { | 333 ['OS!="ios"', { |
| 336 'includes': [ | 334 'includes': [ |
| 337 'base/ime/ime.gypi', | 335 'base/ime/ime.gypi', |
| 338 ], | 336 ], |
| 339 }, { # OS=="ios" | 337 }, { # OS=="ios" |
| 340 # iOS only uses a subset of UI. | 338 # iOS only uses a subset of UI. |
|
lliabraa
2013/10/30 15:39:33
maybe add the dependency on ui_unittests.gyp here?
| |
| 341 'sources/': [ | 339 'sources/': [ |
| 342 ['exclude', '\\.(cc|mm)$'], | 340 ['exclude', '\\.(cc|mm)$'], |
| 343 ['include', '_ios\\.(cc|mm)$'], | 341 ['include', '_ios\\.(cc|mm)$'], |
| 344 ['include', '(^|/)ios/'], | 342 ['include', '(^|/)ios/'], |
| 345 ['include', '^base/l10n/'], | 343 ['include', '^base/l10n/'], |
| 346 ['include', '^base/layout'], | 344 ['include', '^base/layout'], |
| 347 ['include', '^base/resource/'], | 345 ['include', '^base/resource/'], |
| 348 ['include', '^base/ui_base_'], | 346 ['include', '^base/ui_base_'], |
| 349 ], | 347 ], |
| 350 'link_settings': { | 348 'link_settings': { |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 725 'xcode_settings': { | 723 'xcode_settings': { |
| 726 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', | 724 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', |
| 727 }, | 725 }, |
| 728 }], | 726 }], |
| 729 ], | 727 ], |
| 730 }, | 728 }, |
| 731 ], | 729 ], |
| 732 }], | 730 }], |
| 733 ], | 731 ], |
| 734 } | 732 } |
| OLD | NEW |