| 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. | |
| 118 } | 116 } |
| 119 | 117 |
| 120 if (is_android) { | 118 if (is_android) { |
| 121 #TODO(GYP) | 119 #TODO(GYP) |
| 122 #'target_name': 'sql_unittests_apk', | 120 #'target_name': 'sql_unittests_apk', |
| 123 #'type': 'none', | 121 #'type': 'none', |
| 124 #'dependencies': [ | 122 #'dependencies': [ |
| 125 # 'sql_unittests', | 123 # 'sql_unittests', |
| 126 #], | 124 #], |
| 127 #'variables': { | 125 #'variables': { |
| 128 # 'test_suite_name': 'sql_unittests', | 126 # 'test_suite_name': 'sql_unittests', |
| 129 #}, | 127 #}, |
| 130 #'includes': [ '../build/apk_test.gypi' ], | 128 #'includes': [ '../build/apk_test.gypi' ], |
| 131 } | 129 } |
| OLD | NEW |