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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 }, | 7 }, |
8 'target_defaults': { | |
9 'conditions': [ | |
10 ['OS!="linux" or chromeos==1', { | |
11 'sources/': [ ['exclude', '_linux\\.(h|cc)$'] ], | |
12 }], | |
13 ], | |
14 }, | |
15 'targets': [ | 8 'targets': [ |
16 { | 9 { |
17 'target_name': 'views', | 10 'target_name': 'views', |
18 'type': '<(component)', | 11 'type': '<(component)', |
19 'dependencies': [ | 12 'dependencies': [ |
20 '../../base/base.gyp:base', | 13 '../../base/base.gyp:base', |
21 '../../base/base.gyp:base_i18n', | 14 '../../base/base.gyp:base_i18n', |
22 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 15 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
23 '../../skia/skia.gyp:skia', | 16 '../../skia/skia.gyp:skia', |
24 '../../third_party/icu/icu.gyp:icui18n', | 17 '../../third_party/icu/icu.gyp:icui18n', |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 }], | 684 }], |
692 ['use_ozone==1', { | 685 ['use_ozone==1', { |
693 'sources!': [ | 686 'sources!': [ |
694 'corewm/capture_controller_unittest.cc', | 687 'corewm/capture_controller_unittest.cc', |
695 ], | 688 ], |
696 }], | 689 }], |
697 ], | 690 ], |
698 }, # target_name: views_unittests | 691 }, # target_name: views_unittests |
699 ], | 692 ], |
700 } | 693 } |
OLD | NEW |