| 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 component("common") { | 5 component("common") { |
| 6 output_name = "storage_common" | 6 output_name = "storage_common" |
| 7 sources = [ | 7 sources = [ |
| 8 "blob_storage/blob_item_bytes_request.cc", | 8 "blob_storage/blob_item_bytes_request.cc", |
| 9 "blob_storage/blob_item_bytes_request.h", | 9 "blob_storage/blob_item_bytes_request.h", |
| 10 "blob_storage/blob_item_bytes_response.cc", | 10 "blob_storage/blob_item_bytes_response.cc", |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] | 40 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] |
| 41 | 41 |
| 42 deps = [ | 42 deps = [ |
| 43 "//base", | 43 "//base", |
| 44 "//base/third_party/dynamic_annotations", | 44 "//base/third_party/dynamic_annotations", |
| 45 "//net", | 45 "//net", |
| 46 "//third_party/WebKit/public:blink_headers", | 46 "//third_party/WebKit/public:blink_headers", |
| 47 "//url", | 47 "//url", |
| 48 ] | 48 ] |
| 49 } | 49 } |
| 50 |
| 51 source_set("unittests") { |
| 52 testonly = true |
| 53 |
| 54 sources = [ |
| 55 "database/database_connections_unittest.cc", |
| 56 "database/database_identifier_unittest.cc", |
| 57 "fileapi/file_system_util_unittest.cc", |
| 58 ] |
| 59 |
| 60 deps = [ |
| 61 ":common", |
| 62 "//base/test:run_all_unittests", |
| 63 "//base/test:test_support", |
| 64 "//testing/gtest", |
| 65 "//url", |
| 66 ] |
| 67 } |
| OLD | NEW |