| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("common") { | 7 component("common") { |
| 8 output_name = "blimp_common" | 8 output_name = "blimp_common" |
| 9 sources = [ | 9 sources = [ |
| 10 "blimp_common_export.h", | 10 "blimp_common_export.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "//crypto", | 31 "//crypto", |
| 32 ] | 32 ] |
| 33 } | 33 } |
| 34 | 34 |
| 35 source_set("test_support") { | 35 source_set("test_support") { |
| 36 testonly = true | 36 testonly = true |
| 37 | 37 |
| 38 sources = [ | 38 sources = [ |
| 39 "blob_cache/mock_blob_cache.cc", | 39 "blob_cache/mock_blob_cache.cc", |
| 40 "blob_cache/mock_blob_cache.h", | 40 "blob_cache/mock_blob_cache.h", |
| 41 "blob_cache/test_util.cc", |
| 42 "blob_cache/test_util.h", |
| 41 ] | 43 ] |
| 42 | 44 |
| 43 deps = [ | 45 deps = [ |
| 44 ":common", | 46 ":common", |
| 45 "//blimp/common/proto", | 47 "//blimp/common/proto", |
| 46 "//testing/gmock", | 48 "//testing/gmock", |
| 47 "//testing/gtest", | 49 "//testing/gtest", |
| 48 ] | 50 ] |
| 49 } | 51 } |
| 50 | 52 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 61 deps = [ | 63 deps = [ |
| 62 ":common", | 64 ":common", |
| 63 "//base", | 65 "//base", |
| 64 "//blimp/common/proto", | 66 "//blimp/common/proto", |
| 65 "//blimp/net:test_support", | 67 "//blimp/net:test_support", |
| 66 "//crypto", | 68 "//crypto", |
| 67 "//testing/gmock", | 69 "//testing/gmock", |
| 68 "//testing/gtest", | 70 "//testing/gtest", |
| 69 ] | 71 ] |
| 70 } | 72 } |
| OLD | NEW |