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

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

Issue 1867653002: Initial version of Blimp BlobCache. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments from kmarshall, except swap 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
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",
11 "blob_cache/in_memory_blob_cache.cc",
12 "blob_cache/in_memory_blob_cache.h",
13 "blob_cache/sha1_util.cc",
14 "blob_cache/sha1_util.h",
10 "compositor/blimp_image_serialization_processor.cc", 15 "compositor/blimp_image_serialization_processor.cc",
11 "compositor/blimp_image_serialization_processor.h", 16 "compositor/blimp_image_serialization_processor.h",
12 "compositor/blimp_task_graph_runner.cc", 17 "compositor/blimp_task_graph_runner.cc",
13 "compositor/blimp_task_graph_runner.h", 18 "compositor/blimp_task_graph_runner.h",
14 "compositor/webp_decoder.cc", 19 "compositor/webp_decoder.cc",
15 "compositor/webp_decoder.h", 20 "compositor/webp_decoder.h",
16 "create_blimp_message.cc", 21 "create_blimp_message.cc",
17 "create_blimp_message.h", 22 "create_blimp_message.h",
18 "logging.cc", 23 "logging.cc",
19 "logging.h", 24 "logging.h",
(...skipping 10 matching lines...) Expand all
30 "//third_party/libwebp", 35 "//third_party/libwebp",
31 "//ui/gfx/geometry", 36 "//ui/gfx/geometry",
32 "//ui/gl", 37 "//ui/gl",
33 ] 38 ]
34 } 39 }
35 40
36 source_set("unit_tests") { 41 source_set("unit_tests") {
37 testonly = true 42 testonly = true
38 43
39 sources = [ 44 sources = [
45 "blob_cache/in_memory_blob_cache_unittest.cc",
40 "create_blimp_message_unittest.cc", 46 "create_blimp_message_unittest.cc",
41 "logging_unittest.cc", 47 "logging_unittest.cc",
42 ] 48 ]
43 49
44 deps = [ 50 deps = [
45 ":blimp_common", 51 ":blimp_common",
46 "//blimp/common/proto", 52 "//blimp/common/proto",
47 "//testing/gmock", 53 "//testing/gmock",
48 "//testing/gtest", 54 "//testing/gtest",
49 ] 55 ]
50 } 56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698