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