| 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 24 matching lines...) Expand all Loading... |
| 35 "//base/third_party/dynamic_annotations", | 35 "//base/third_party/dynamic_annotations", |
| 36 "//third_party/sqlite", | 36 "//third_party/sqlite", |
| 37 ] | 37 ] |
| 38 } | 38 } |
| 39 | 39 |
| 40 source_set("test_support") { | 40 source_set("test_support") { |
| 41 testonly = true | 41 testonly = true |
| 42 sources = [ | 42 sources = [ |
| 43 "test/error_callback_support.cc", | 43 "test/error_callback_support.cc", |
| 44 "test/error_callback_support.h", | 44 "test/error_callback_support.h", |
| 45 "test/scoped_error_ignorer.cc", | 45 "test/scoped_error_expecter.cc", |
| 46 "test/scoped_error_ignorer.h", | 46 "test/scoped_error_expecter.h", |
| 47 "test/test_helpers.cc", | 47 "test/test_helpers.cc", |
| 48 "test/test_helpers.h", | 48 "test/test_helpers.h", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 public_deps = [ | 51 public_deps = [ |
| 52 ":sql", | 52 ":sql", |
| 53 ] | 53 ] |
| 54 deps = [ | 54 deps = [ |
| 55 "//base", | 55 "//base", |
| 56 "//testing/gtest", | 56 "//testing/gtest", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 deps = [ | 108 deps = [ |
| 109 ":redirection_header", | 109 ":redirection_header", |
| 110 ":sql", | 110 ":sql", |
| 111 ":sql_unittests_bundle_data", | 111 ":sql_unittests_bundle_data", |
| 112 ":test_support", | 112 ":test_support", |
| 113 "//base/test:test_support", | 113 "//base/test:test_support", |
| 114 "//testing/gtest", | 114 "//testing/gtest", |
| 115 "//third_party/sqlite", | 115 "//third_party/sqlite", |
| 116 ] | 116 ] |
| 117 } | 117 } |
| OLD | NEW |