| 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 28 matching lines...) Expand all Loading... |
| 39 "//ui/gl", | 39 "//ui/gl", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 source_set("test_support") { | 43 source_set("test_support") { |
| 44 testonly = true | 44 testonly = true |
| 45 | 45 |
| 46 sources = [ | 46 sources = [ |
| 47 "blob_cache/mock_blob_cache.cc", | 47 "blob_cache/mock_blob_cache.cc", |
| 48 "blob_cache/mock_blob_cache.h", | 48 "blob_cache/mock_blob_cache.h", |
| 49 "blob_cache/test_util.cc", |
| 50 "blob_cache/test_util.h", |
| 49 ] | 51 ] |
| 50 | 52 |
| 51 deps = [ | 53 deps = [ |
| 52 ":common", | 54 ":common", |
| 53 "//blimp/common/proto", | 55 "//blimp/common/proto", |
| 54 "//testing/gmock", | 56 "//testing/gmock", |
| 55 "//testing/gtest", | 57 "//testing/gtest", |
| 56 ] | 58 ] |
| 57 } | 59 } |
| 58 | 60 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 69 deps = [ | 71 deps = [ |
| 70 ":common", | 72 ":common", |
| 71 "//base", | 73 "//base", |
| 72 "//blimp/common/proto", | 74 "//blimp/common/proto", |
| 73 "//blimp/net:test_support", | 75 "//blimp/net:test_support", |
| 74 "//crypto", | 76 "//crypto", |
| 75 "//testing/gmock", | 77 "//testing/gmock", |
| 76 "//testing/gtest", | 78 "//testing/gtest", |
| 77 ] | 79 ] |
| 78 } | 80 } |
| OLD | NEW |