| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 static_library("content") { | 5 static_library("content") { |
| 6 sources = [ | 6 sources = [ |
| 7 "payment_request.cc", | 7 "payment_request.cc", |
| 8 "payment_request.h", | 8 "payment_request.h", |
| 9 "payment_request_dialog.h", | 9 "payment_request_dialog.h", |
| 10 "payment_request_spec.cc", | 10 "payment_request_spec.cc", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 ] | 75 ] |
| 76 | 76 |
| 77 deps = [ | 77 deps = [ |
| 78 ":content", | 78 ":content", |
| 79 ":utils", | 79 ":utils", |
| 80 "//base", | 80 "//base", |
| 81 "//base/test:test_support", | 81 "//base/test:test_support", |
| 82 "//components/autofill/core/browser", | 82 "//components/autofill/core/browser", |
| 83 "//components/autofill/core/browser:test_support", | 83 "//components/autofill/core/browser:test_support", |
| 84 "//components/payments/core", | 84 "//components/payments/core", |
| 85 "//components/payments/core:test_support", |
| 85 "//components/payments/mojom", | 86 "//components/payments/mojom", |
| 86 "//content/test:test_support", | 87 "//content/test:test_support", |
| 87 "//net:test_support", | 88 "//net:test_support", |
| 88 "//testing/gtest", | 89 "//testing/gtest", |
| 89 "//third_party/icu", | 90 "//third_party/icu", |
| 90 "//third_party/libaddressinput:test_support", | 91 "//third_party/libaddressinput:test_support", |
| 91 ] | 92 ] |
| 92 } | 93 } |
| OLD | NEW |