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

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

Issue 1955493002: Move BlimpImageSerializationProcessor and WebPDecoder to //blimp/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments, moved to blimp::client namespace, renamed webp_decoder.[cc|h] according to func… Created 4 years, 7 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("common") { 7 component("common") {
8 output_name = "blimp_common" 8 output_name = "blimp_common"
9 sources = [ 9 sources = [
10 "blimp_common_export.h", 10 "blimp_common_export.h",
11 "blob_cache/blob_cache.h", 11 "blob_cache/blob_cache.h",
12 "blob_cache/id_util.cc", 12 "blob_cache/id_util.cc",
13 "blob_cache/id_util.h", 13 "blob_cache/id_util.h",
14 "blob_cache/in_memory_blob_cache.cc", 14 "blob_cache/in_memory_blob_cache.cc",
15 "blob_cache/in_memory_blob_cache.h", 15 "blob_cache/in_memory_blob_cache.h",
16 "compositor/blimp_image_serialization_processor.cc",
17 "compositor/blimp_image_serialization_processor.h",
18 "compositor/blimp_task_graph_runner.cc", 16 "compositor/blimp_task_graph_runner.cc",
19 "compositor/blimp_task_graph_runner.h", 17 "compositor/blimp_task_graph_runner.h",
20 "compositor/webp_decoder.cc",
21 "compositor/webp_decoder.h",
22 "create_blimp_message.cc", 18 "create_blimp_message.cc",
23 "create_blimp_message.h", 19 "create_blimp_message.h",
24 "logging.cc", 20 "logging.cc",
25 "logging.h", 21 "logging.h",
26 "protocol_version.h", 22 "protocol_version.h",
27 ] 23 ]
28 24
29 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 25 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
30 26
31 deps = [ 27 deps = [
32 "//base", 28 "//base",
33 "//blimp/common/proto", 29 "//blimp/common/proto",
34 "//cc", 30 "//cc",
35 "//crypto", 31 "//crypto",
36 "//skia",
37 "//third_party/libwebp",
38 "//ui/gfx/geometry",
39 "//ui/gl",
40 ] 32 ]
41 } 33 }
42 34
43 source_set("test_support") { 35 source_set("test_support") {
44 testonly = true 36 testonly = true
45 37
46 sources = [ 38 sources = [
47 "blob_cache/mock_blob_cache.cc", 39 "blob_cache/mock_blob_cache.cc",
48 "blob_cache/mock_blob_cache.h", 40 "blob_cache/mock_blob_cache.h",
49 ] 41 ]
(...skipping 19 matching lines...) Expand all
69 deps = [ 61 deps = [
70 ":common", 62 ":common",
71 "//base", 63 "//base",
72 "//blimp/common/proto", 64 "//blimp/common/proto",
73 "//blimp/net:test_support", 65 "//blimp/net:test_support",
74 "//crypto", 66 "//crypto",
75 "//testing/gmock", 67 "//testing/gmock",
76 "//testing/gtest", 68 "//testing/gtest",
77 ] 69 ]
78 } 70 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698