OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
87 'touch/selection_bound_unittest.cc', | 87 'touch/selection_bound_unittest.cc', |
88 'user_activity/user_activity_detector_unittest.cc', | 88 'user_activity/user_activity_detector_unittest.cc', |
89 'view_prop_unittest.cc', | 89 'view_prop_unittest.cc', |
90 'webui/web_ui_util_unittest.cc', | 90 'webui/web_ui_util_unittest.cc', |
91 'x/selection_requestor_unittest.cc', | 91 'x/selection_requestor_unittest.cc', |
92 ], | 92 ], |
93 'include_dirs': [ | 93 'include_dirs': [ |
94 '../..', | 94 '../..', |
95 ], | 95 ], |
96 'conditions': [ | 96 'conditions': [ |
| 97 ['OS=="chromeos" or OS=="linux" or OS=="win"', { |
| 98 'sources': [ |
| 99 'resource/material_design/material_design_controller_unittest.cc', |
| 100 ] |
| 101 }], |
97 ['OS!="ios"', { | 102 ['OS!="ios"', { |
98 'sources' : [ '<@(_all_sources)' ], | 103 'sources' : [ '<@(_all_sources)' ], |
99 }, { # OS=="ios" | 104 }, { # OS=="ios" |
100 'sources' : [ '<@(_common_sources)' ], | 105 'sources' : [ '<@(_common_sources)' ], |
101 # The ResourceBundle unittest expects a locale.pak file to exist in | 106 # The ResourceBundle unittest expects a locale.pak file to exist in |
102 # the bundle for English-US. Copy it in from where it was generated | 107 # the bundle for English-US. Copy it in from where it was generated |
103 # by ui_resources.gyp:ui_test_pak. | 108 # by ui_resources.gyp:ui_test_pak. |
104 'mac_bundle_resources': [ | 109 'mac_bundle_resources': [ |
105 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', | 110 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', |
106 ], | 111 ], |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
306 'dependencies': [ | 311 'dependencies': [ |
307 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 312 '../../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
308 ], | 313 ], |
309 }], | 314 }], |
310 ], | 315 ], |
311 }, | 316 }, |
312 ], | 317 ], |
313 }], | 318 }], |
314 ], | 319 ], |
315 } | 320 } |
OLD | NEW |