| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 component("gcm") { | 7 component("gcm") { |
| 8 sources = [ | 8 sources = [ |
| 9 "base/mcs_message.cc", | 9 "base/mcs_message.cc", |
| 10 "base/mcs_message.h", | 10 "base/mcs_message.h", |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 "//base/third_party/dynamic_annotations", | 51 "//base/third_party/dynamic_annotations", |
| 52 "//net", | 52 "//net", |
| 53 "//third_party/leveldatabase", | 53 "//third_party/leveldatabase", |
| 54 "//url", | 54 "//url", |
| 55 ] | 55 ] |
| 56 | 56 |
| 57 forward_dependent_configs_from = [ ":proto" ] | 57 forward_dependent_configs_from = [ ":proto" ] |
| 58 } | 58 } |
| 59 | 59 |
| 60 proto_library("proto") { | 60 proto_library("proto") { |
| 61 visibility = ":*" | 61 visibility = [ ":*" ] |
| 62 sources = [ | 62 sources = [ |
| 63 "protocol/android_checkin.proto", | 63 "protocol/android_checkin.proto", |
| 64 "protocol/checkin.proto", | 64 "protocol/checkin.proto", |
| 65 "protocol/mcs.proto", | 65 "protocol/mcs.proto", |
| 66 ] | 66 ] |
| 67 } | 67 } |
| 68 | 68 |
| 69 static_library("test_support") { | 69 static_library("test_support") { |
| 70 sources = [ | 70 sources = [ |
| 71 "base/fake_encryptor.cc", | 71 "base/fake_encryptor.cc", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 deps = [ | 123 deps = [ |
| 124 ":proto", | 124 ":proto", |
| 125 ":test_support", | 125 ":test_support", |
| 126 "//base", | 126 "//base", |
| 127 "//base/test:run_all_unittests", | 127 "//base/test:run_all_unittests", |
| 128 "//net", | 128 "//net", |
| 129 "//net:test_support", | 129 "//net:test_support", |
| 130 "//testing/gtest", | 130 "//testing/gtest", |
| 131 ] | 131 ] |
| 132 } | 132 } |
| OLD | NEW |