Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(256)

Side by Side Diff: storage/common/BUILD.gn

Issue 2827933003: Move storage tests from content/common next to the files they cover. (Closed)
Patch Set: Add missing dep. Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « storage/browser/BUILD.gn ('k') | storage/common/database/database_connections_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « storage/browser/BUILD.gn ('k') | storage/common/database/database_connections_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698