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 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 ], | 107 ], |
108 'include_dirs': [ | 108 'include_dirs': [ |
109 '..', | 109 '..', |
110 ], | 110 ], |
111 'conditions': [ | 111 'conditions': [ |
112 ['OS == "android"', { | 112 ['OS == "android"', { |
113 'dependencies': [ | 113 'dependencies': [ |
114 '../testing/android/native_test.gyp:native_test_native_code', | 114 '../testing/android/native_test.gyp:native_test_native_code', |
115 ], | 115 ], |
116 }], | 116 }], |
| 117 ['OS == "ios"', { |
| 118 'actions': [{ |
| 119 'action_name': 'copy_test_data', |
| 120 'variables': { |
| 121 'test_data_files': [ |
| 122 'test/data', |
| 123 ], |
| 124 'test_data_prefix' : 'sql', |
| 125 }, |
| 126 'includes': [ '../build/copy_test_data_ios.gypi' ], |
| 127 }], |
| 128 }], |
117 ], | 129 ], |
118 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 130 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
119 'msvs_disabled_warnings': [4267, ], | 131 'msvs_disabled_warnings': [4267, ], |
120 }, | 132 }, |
121 ], | 133 ], |
122 'conditions': [ | 134 'conditions': [ |
123 ['OS == "android"', { | 135 ['OS == "android"', { |
124 'targets': [ | 136 'targets': [ |
125 { | 137 { |
126 'target_name': 'sql_unittests_apk', | 138 'target_name': 'sql_unittests_apk', |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 '../build/isolate.gypi', | 179 '../build/isolate.gypi', |
168 ], | 180 ], |
169 'sources': [ | 181 'sources': [ |
170 'sql_unittests.isolate', | 182 'sql_unittests.isolate', |
171 ], | 183 ], |
172 }, | 184 }, |
173 ], | 185 ], |
174 }], | 186 }], |
175 ], | 187 ], |
176 } | 188 } |
OLD | NEW |