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

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

Issue 1779673003: Added network components for blimp text input feature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added proto coverters for TextInputType Created 4 years, 9 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 "compositor/blimp_image_serialization_processor.cc", 10 "compositor/blimp_image_serialization_processor.cc",
11 "compositor/blimp_image_serialization_processor.h", 11 "compositor/blimp_image_serialization_processor.h",
12 "compositor/blimp_task_graph_runner.cc", 12 "compositor/blimp_task_graph_runner.cc",
13 "compositor/blimp_task_graph_runner.h", 13 "compositor/blimp_task_graph_runner.h",
14 "compositor/webp_decoder.cc", 14 "compositor/webp_decoder.cc",
15 "compositor/webp_decoder.h", 15 "compositor/webp_decoder.h",
16 "create_blimp_message.cc", 16 "create_blimp_message.cc",
17 "create_blimp_message.h", 17 "create_blimp_message.h",
18 "logging.cc", 18 "logging.cc",
19 "logging.h", 19 "logging.h",
20 "proto/blimp_conversions.cc",
21 "proto/blimp_conversions.h",
20 "protocol_version.h", 22 "protocol_version.h",
21 ] 23 ]
22 24
23 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 25 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
24 26
25 deps = [ 27 deps = [
26 "//base", 28 "//base",
27 "//blimp/common/proto", 29 "//blimp/common/proto",
28 "//cc", 30 "//cc",
29 "//skia", 31 "//skia",
(...skipping 11 matching lines...) Expand all
41 "logging_unittest.cc", 43 "logging_unittest.cc",
42 ] 44 ]
43 45
44 deps = [ 46 deps = [
45 ":blimp_common", 47 ":blimp_common",
46 "//blimp/common/proto", 48 "//blimp/common/proto",
47 "//testing/gmock", 49 "//testing/gmock",
48 "//testing/gtest", 50 "//testing/gtest",
49 ] 51 ]
50 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698