| 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 22 matching lines...) Expand all Loading... |
| 33 "//blimp/common/proto", | 33 "//blimp/common/proto", |
| 34 "//cc", | 34 "//cc", |
| 35 "//crypto", | 35 "//crypto", |
| 36 "//skia", | 36 "//skia", |
| 37 "//third_party/libwebp", | 37 "//third_party/libwebp", |
| 38 "//ui/gfx/geometry", | 38 "//ui/gfx/geometry", |
| 39 "//ui/gl", | 39 "//ui/gl", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 source_set("test_support") { |
| 44 testonly = true |
| 45 |
| 46 sources = [ |
| 47 "blob_cache/mock_blob_cache.cc", |
| 48 "blob_cache/mock_blob_cache.h", |
| 49 ] |
| 50 |
| 51 deps = [ |
| 52 ":common", |
| 53 "//blimp/common/proto", |
| 54 "//testing/gmock", |
| 55 "//testing/gtest", |
| 56 ] |
| 57 } |
| 58 |
| 43 source_set("unit_tests") { | 59 source_set("unit_tests") { |
| 44 testonly = true | 60 testonly = true |
| 45 | 61 |
| 46 sources = [ | 62 sources = [ |
| 47 "blob_cache/id_util_unittest.cc", | 63 "blob_cache/id_util_unittest.cc", |
| 48 "blob_cache/in_memory_blob_cache_unittest.cc", | 64 "blob_cache/in_memory_blob_cache_unittest.cc", |
| 49 "create_blimp_message_unittest.cc", | 65 "create_blimp_message_unittest.cc", |
| 50 "logging_unittest.cc", | 66 "logging_unittest.cc", |
| 51 ] | 67 ] |
| 52 | 68 |
| 53 deps = [ | 69 deps = [ |
| 54 ":common", | 70 ":common", |
| 55 "//base", | 71 "//base", |
| 56 "//blimp/common/proto", | 72 "//blimp/common/proto", |
| 57 "//blimp/net:test_support", | 73 "//blimp/net:test_support", |
| 58 "//crypto", | 74 "//crypto", |
| 59 "//testing/gmock", | 75 "//testing/gmock", |
| 60 "//testing/gtest", | 76 "//testing/gtest", |
| 61 ] | 77 ] |
| 62 } | 78 } |
| OLD | NEW |