| 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 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base", | 33 "//base", |
| 34 "//cc", | 34 "//cc", |
| 35 "//crypto", | 35 "//crypto", |
| 36 ] | 36 ] |
| 37 | 37 |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 ":protocol_version", | 39 ":protocol_version", |
| 40 "//blimp/common/proto", | 40 "//blimp/common/proto", |
| 41 "//blimp/common/public/session:assignment_options", |
| 41 ] | 42 ] |
| 42 } | 43 } |
| 43 | 44 |
| 44 source_set("test_support") { | 45 source_set("test_support") { |
| 45 testonly = true | 46 testonly = true |
| 46 | 47 |
| 47 sources = [ | 48 sources = [ |
| 48 "blob_cache/mock_blob_cache.cc", | 49 "blob_cache/mock_blob_cache.cc", |
| 49 "blob_cache/mock_blob_cache.h", | 50 "blob_cache/mock_blob_cache.h", |
| 50 "blob_cache/test_util.cc", | 51 "blob_cache/test_util.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 ] | 85 ] |
| 85 } | 86 } |
| 86 | 87 |
| 87 process_version("protocol_version") { | 88 process_version("protocol_version") { |
| 88 sources = [ | 89 sources = [ |
| 89 "//chrome/VERSION", | 90 "//chrome/VERSION", |
| 90 ] | 91 ] |
| 91 template_file = "protocol_version.h.version" | 92 template_file = "protocol_version.h.version" |
| 92 output = "$target_gen_dir/protocol_version.h" | 93 output = "$target_gen_dir/protocol_version.h" |
| 93 } | 94 } |
| OLD | NEW |