OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |