OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("sql") { | 7 component("sql") { |
8 sources = [ | 8 sources = [ |
9 "connection.cc", | 9 "connection.cc", |
10 "connection.h", | 10 "connection.h", |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 if (is_android) { | 106 if (is_android) { |
107 isolate_file = "sql_unittests.isolate" | 107 isolate_file = "sql_unittests.isolate" |
108 } | 108 } |
109 | 109 |
110 # TODO(GYP) | 110 # TODO(GYP) |
111 #['OS == "android"', { | 111 #['OS == "android"', { |
112 # 'dependencies': [ | 112 # 'dependencies': [ |
113 # '../testing/android/native_test.gyp:native_test_native_code', | 113 # '../testing/android/native_test.gyp:native_test_native_code', |
114 # ], | 114 # ], |
115 #}], | 115 #}], |
| 116 |
| 117 # TODO(GYP): dep on copy_test_data_ios action. |
116 } | 118 } |
117 | 119 |
118 if (is_android) { | 120 if (is_android) { |
119 #TODO(GYP) | 121 #TODO(GYP) |
120 #'target_name': 'sql_unittests_apk', | 122 #'target_name': 'sql_unittests_apk', |
121 #'type': 'none', | 123 #'type': 'none', |
122 #'dependencies': [ | 124 #'dependencies': [ |
123 # 'sql_unittests', | 125 # 'sql_unittests', |
124 #], | 126 #], |
125 #'variables': { | 127 #'variables': { |
126 # 'test_suite_name': 'sql_unittests', | 128 # 'test_suite_name': 'sql_unittests', |
127 #}, | 129 #}, |
128 #'includes': [ '../build/apk_test.gypi' ], | 130 #'includes': [ '../build/apk_test.gypi' ], |
129 } | 131 } |
OLD | NEW |