| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 | 44 |
| 45 sources = [ | 45 sources = [ |
| 46 "blob_cache/id_util_unittest.cc", | 46 "blob_cache/id_util_unittest.cc", |
| 47 "blob_cache/in_memory_blob_cache_unittest.cc", | 47 "blob_cache/in_memory_blob_cache_unittest.cc", |
| 48 "create_blimp_message_unittest.cc", | 48 "create_blimp_message_unittest.cc", |
| 49 "logging_unittest.cc", | 49 "logging_unittest.cc", |
| 50 ] | 50 ] |
| 51 | 51 |
| 52 deps = [ | 52 deps = [ |
| 53 ":blimp_common", | 53 ":blimp_common", |
| 54 "//base", |
| 54 "//blimp/common/proto", | 55 "//blimp/common/proto", |
| 56 "//blimp/net:test_support", |
| 57 "//crypto", |
| 55 "//testing/gmock", | 58 "//testing/gmock", |
| 56 "//testing/gtest", | 59 "//testing/gtest", |
| 57 ] | 60 ] |
| 58 } | 61 } |
| OLD | NEW |