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

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

Issue 2241623002: blimp: Move compositing, input and render widget feature to client/core. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments from #7 Created 4 years, 4 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("//chrome/version.gni") 5 import("//chrome/version.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("common") { 8 component("common") {
9 output_name = "blimp_common" 9 output_name = "blimp_common"
10 sources = [ 10 sources = [
11 "blimp_common_export.h", 11 "blimp_common_export.h",
12 "blob_cache/blob_cache.h", 12 "blob_cache/blob_cache.h",
13 "blob_cache/id_util.cc", 13 "blob_cache/id_util.cc",
14 "blob_cache/id_util.h", 14 "blob_cache/id_util.h",
15 "blob_cache/in_memory_blob_cache.cc", 15 "blob_cache/in_memory_blob_cache.cc",
16 "blob_cache/in_memory_blob_cache.h", 16 "blob_cache/in_memory_blob_cache.h",
17 "compositor/blimp_task_graph_runner.cc",
18 "compositor/blimp_task_graph_runner.h",
19 "compositor/reference_tracker.cc", 17 "compositor/reference_tracker.cc",
20 "compositor/reference_tracker.h", 18 "compositor/reference_tracker.h",
21 "create_blimp_message.cc", 19 "create_blimp_message.cc",
22 "create_blimp_message.h", 20 "create_blimp_message.h",
23 "get_client_token.cc", 21 "get_client_token.cc",
24 "get_client_token.h", 22 "get_client_token.h",
25 "logging.cc", 23 "logging.cc",
26 "logging.h", 24 "logging.h",
27 "switches.cc", 25 "switches.cc",
28 "switches.h", 26 "switches.h",
29 ] 27 ]
30 28
31 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ] 29 defines = [ "BLIMP_COMMON_IMPLEMENTATION=1" ]
32 30
33 deps = [ 31 deps = [
34 "//base", 32 "//base",
35 "//cc",
36 "//crypto", 33 "//crypto",
37 ] 34 ]
38 35
39 public_deps = [ 36 public_deps = [
40 ":protocol_version", 37 ":protocol_version",
41 "//blimp/common/proto", 38 "//blimp/common/proto",
42 ] 39 ]
43 } 40 }
44 41
45 source_set("test_support") { 42 source_set("test_support") {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 "//crypto", 77 "//crypto",
81 "//testing/gmock", 78 "//testing/gmock",
82 "//testing/gtest", 79 "//testing/gtest",
83 ] 80 ]
84 } 81 }
85 82
86 process_version("protocol_version") { 83 process_version("protocol_version") {
87 template_file = "protocol_version.h.version" 84 template_file = "protocol_version.h.version"
88 output = "$target_gen_dir/protocol_version.h" 85 output = "$target_gen_dir/protocol_version.h"
89 } 86 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698