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

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

Issue 1912153004: [blimp] Change to use SHA-256 instead of SHA-1 for unique ids (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from Wez Created 4 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 | « no previous file | blimp/common/DEPS » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("blimp_common") { 7 component("blimp_common") {
8 sources = [ 8 sources = [
9 "blimp_common_export.h", 9 "blimp_common_export.h",
10 "blob_cache/blob_cache.h", 10 "blob_cache/blob_cache.h",
(...skipping 13 matching lines...) Expand all
24 "logging.h", 24 "logging.h",
25 "protocol_version.h", 25 "protocol_version.h",
26 ] 26 ]
27 27
28 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 28 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
29 29
30 deps = [ 30 deps = [
31 "//base", 31 "//base",
32 "//blimp/common/proto", 32 "//blimp/common/proto",
33 "//cc", 33 "//cc",
34 "//crypto",
34 "//skia", 35 "//skia",
35 "//third_party/libwebp", 36 "//third_party/libwebp",
36 "//ui/gfx/geometry", 37 "//ui/gfx/geometry",
37 "//ui/gl", 38 "//ui/gl",
38 ] 39 ]
39 } 40 }
40 41
41 source_set("unit_tests") { 42 source_set("unit_tests") {
42 testonly = true 43 testonly = true
43 44
44 sources = [ 45 sources = [
46 "blob_cache/id_util_unittest.cc",
45 "blob_cache/in_memory_blob_cache_unittest.cc", 47 "blob_cache/in_memory_blob_cache_unittest.cc",
46 "create_blimp_message_unittest.cc", 48 "create_blimp_message_unittest.cc",
47 "logging_unittest.cc", 49 "logging_unittest.cc",
48 ] 50 ]
49 51
50 deps = [ 52 deps = [
51 ":blimp_common", 53 ":blimp_common",
52 "//blimp/common/proto", 54 "//blimp/common/proto",
53 "//testing/gmock", 55 "//testing/gmock",
54 "//testing/gtest", 56 "//testing/gtest",
55 ] 57 ]
56 } 58 }
OLDNEW
« no previous file with comments | « no previous file | blimp/common/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698