Chromium Code Reviews| 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 import("//testing/test.gni") | 4 import("//testing/test.gni") |
| 5 | 5 |
| 6 component("browser") { | 6 component("browser") { |
| 7 output_name = "storage_browser" | 7 output_name = "storage_browser" |
| 8 sources = [ | 8 sources = [ |
| 9 "blob/blob_data_builder.cc", | 9 "blob/blob_data_builder.cc", |
| 10 "blob/blob_data_builder.h", | 10 "blob/blob_data_builder.h", |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 230 # This file will be removed when the real tests are moved over from | 230 # This file will be removed when the real tests are moved over from |
| 231 # content_unittests to this target. | 231 # content_unittests to this target. |
| 232 "crbug653751_unittest.cc", | 232 "crbug653751_unittest.cc", |
| 233 ] | 233 ] |
| 234 | 234 |
| 235 deps = [ | 235 deps = [ |
| 236 "//base/test:run_all_unittests", | 236 "//base/test:run_all_unittests", |
| 237 "//base/test:test_support", | 237 "//base/test:test_support", |
| 238 "//testing/gtest", | 238 "//testing/gtest", |
| 239 ] | 239 ] |
| 240 | |
| 241 # Trick for getting leveldb tests compiled on the CQ. http://crbug.com/697788 | |
|
Nico
2017/03/02 14:11:27
dpranke: ^
Dirk Pranke
2017/03/02 16:35:00
Don't do this, it's making the build incorrect by
| |
| 242 if (!is_android) { | |
| 243 deps += [ "//third_party/leveldatabase:leveldb_test_targets" ] | |
| 244 } | |
| 240 } | 245 } |
| OLD | NEW |