| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//third_party/protobuf/proto_library.gni") | 6 import("//third_party/protobuf/proto_library.gni") |
| 7 | 7 |
| 8 proto_library("proto") { | 8 proto_library("proto") { |
| 9 sources = [ | 9 sources = [ |
| 10 "src/resources/phonemetadata.proto", | 10 "src/resources/phonemetadata.proto", |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 | 106 |
| 107 configs += [ ":libphonenumber_config_internal" ] | 107 configs += [ ":libphonenumber_config_internal" ] |
| 108 | 108 |
| 109 include_dirs = [ "src/test" ] | 109 include_dirs = [ "src/test" ] |
| 110 | 110 |
| 111 deps = [ | 111 deps = [ |
| 112 ":libphonenumber_without_metadata", | 112 ":libphonenumber_without_metadata", |
| 113 "//base", | 113 "//base", |
| 114 "//base/test:run_all_unittests", | 114 "//base/test:run_all_unittests", |
| 115 "//base/third_party/dynamic_annotations", | 115 "//base/third_party/dynamic_annotations", |
| 116 "//third_party/icu", | |
| 117 "//testing/gmock", | 116 "//testing/gmock", |
| 118 "//testing/gtest", | 117 "//testing/gtest", |
| 118 "//third_party/icu", |
| 119 ] | 119 ] |
| 120 } | 120 } |
| OLD | NEW |