| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 sources = [ | 60 sources = [ |
| 61 "blob_cache/id_util_unittest.cc", | 61 "blob_cache/id_util_unittest.cc", |
| 62 "blob_cache/in_memory_blob_cache_unittest.cc", | 62 "blob_cache/in_memory_blob_cache_unittest.cc", |
| 63 "create_blimp_message_unittest.cc", | 63 "create_blimp_message_unittest.cc", |
| 64 "logging_unittest.cc", | 64 "logging_unittest.cc", |
| 65 ] | 65 ] |
| 66 | 66 |
| 67 deps = [ | 67 deps = [ |
| 68 ":common", | 68 ":common", |
| 69 ":test_support", |
| 69 "//base", | 70 "//base", |
| 70 "//blimp/common/proto", | 71 "//blimp/common/proto", |
| 71 "//blimp/net:test_support", | 72 "//blimp/net:test_support", |
| 72 "//crypto", | 73 "//crypto", |
| 73 "//testing/gmock", | 74 "//testing/gmock", |
| 74 "//testing/gtest", | 75 "//testing/gtest", |
| 75 ] | 76 ] |
| 76 } | 77 } |
| OLD | NEW |