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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 'base/webui/web_ui_util_unittest.cc', | 76 'base/webui/web_ui_util_unittest.cc', |
77 'base/x/selection_requestor_unittest.cc', | 77 'base/x/selection_requestor_unittest.cc', |
78 ], | 78 ], |
79 'include_dirs': [ | 79 'include_dirs': [ |
80 '../', | 80 '../', |
81 ], | 81 ], |
82 'conditions': [ | 82 'conditions': [ |
83 ['OS!="ios"', { | 83 ['OS!="ios"', { |
84 'sources' : ['<@(_all_sources)'], | 84 'sources' : ['<@(_all_sources)'], |
85 }, { # OS=="ios" | 85 }, { # OS=="ios" |
| 86 'dependencies' : [ |
| 87 'ios/ios.gyp:ios', |
| 88 ], |
86 'sources' : [ | 89 'sources' : [ |
87 '<@(_common_sources)', | 90 '<@(_common_sources)', |
| 91 'ios/NSString+CrStringDrawing_unittest.mm', |
88 ], | 92 ], |
89 # The ResourceBundle unittest expects a locale.pak file to exist in | 93 # The ResourceBundle unittest expects a locale.pak file to exist in |
90 # the bundle for English-US. Copy it in from where it was generated | 94 # the bundle for English-US. Copy it in from where it was generated |
91 # by ui_resources.gyp:ui_test_pak. | 95 # by ui_resources.gyp:ui_test_pak. |
92 'mac_bundle_resources': [ | 96 'mac_bundle_resources': [ |
93 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', | 97 '<(PRODUCT_DIR)/ui/en.lproj/locale.pak', |
94 ], | 98 ], |
95 'actions': [ | 99 'actions': [ |
96 { | 100 { |
97 'action_name': 'copy_test_data', | 101 'action_name': 'copy_test_data', |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 ], | 262 ], |
259 'variables': { | 263 'variables': { |
260 'test_suite_name': 'ui_unittests', | 264 'test_suite_name': 'ui_unittests', |
261 }, | 265 }, |
262 'includes': [ '../build/apk_test.gypi' ], | 266 'includes': [ '../build/apk_test.gypi' ], |
263 }, | 267 }, |
264 ], | 268 ], |
265 }], | 269 }], |
266 ], | 270 ], |
267 } | 271 } |
OLD | NEW |