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("//build/util/process_version.gni") | 5 import("//build/util/process_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 = [ |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "logging_unittest.cc", | 70 "logging_unittest.cc", |
71 "mandatory_callback_unittest.cc", | 71 "mandatory_callback_unittest.cc", |
72 ] | 72 ] |
73 | 73 |
74 deps = [ | 74 deps = [ |
75 ":common", | 75 ":common", |
76 ":test_support", | 76 ":test_support", |
77 "//base", | 77 "//base", |
78 "//base/test:test_support", | 78 "//base/test:test_support", |
79 "//blimp/common/proto", | 79 "//blimp/common/proto", |
80 "//blimp/net:test_support", | |
81 "//crypto", | 80 "//crypto", |
82 "//testing/gmock", | 81 "//testing/gmock", |
83 "//testing/gtest", | 82 "//testing/gtest", |
84 ] | 83 ] |
85 } | 84 } |
86 | 85 |
87 process_version("protocol_version") { | 86 process_version("protocol_version") { |
88 sources = [ | 87 sources = [ |
89 "//chrome/VERSION", | 88 "//chrome/VERSION", |
90 ] | 89 ] |
91 template_file = "protocol_version.h.version" | 90 template_file = "protocol_version.h.version" |
92 output = "$target_gen_dir/protocol_version.h" | 91 output = "$target_gen_dir/protocol_version.h" |
93 } | 92 } |
OLD | NEW |