| 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 static_library("content") { | 7 static_library("content") { |
| 8 sources = [ | 8 sources = [ |
| 9 "payment_request.cc", | 9 "payment_request.cc", |
| 10 "payment_request.h", | 10 "payment_request.h", |
| 11 "payment_request_dialog.h", | 11 "payment_request_dialog.h", |
| 12 "payment_request_spec.cc", | 12 "payment_request_spec.cc", |
| 13 "payment_request_spec.h", | 13 "payment_request_spec.h", |
| 14 "payment_request_state.cc", | 14 "payment_request_state.cc", |
| 15 "payment_request_state.h", | 15 "payment_request_state.h", |
| 16 "payment_request_web_contents_manager.cc", | 16 "payment_request_web_contents_manager.cc", |
| 17 "payment_request_web_contents_manager.h", | 17 "payment_request_web_contents_manager.h", |
| 18 "payment_response_helper.cc", | 18 "payment_response_helper.cc", |
| 19 "payment_response_helper.h", | 19 "payment_response_helper.h", |
| 20 ] | 20 ] |
| 21 | 21 |
| 22 deps = [ | 22 deps = [ |
| 23 ":mojom", | 23 ":mojom", |
| 24 ":utils", | 24 ":utils", |
| 25 "//components/autofill/core/browser", | 25 "//components/autofill/core/browser", |
| 26 "//components/payments/core", | 26 "//components/payments/core", |
| 27 "//content/public/browser", | 27 "//content/public/browser", |
| 28 "//mojo/public/cpp/bindings", | 28 "//mojo/public/cpp/bindings", |
| 29 "//third_party/libphonenumber", |
| 29 ] | 30 ] |
| 30 } | 31 } |
| 31 | 32 |
| 32 mojom("mojom") { | 33 mojom("mojom") { |
| 33 sources = [ | 34 sources = [ |
| 34 "payment_request.mojom", | 35 "payment_request.mojom", |
| 35 ] | 36 ] |
| 36 } | 37 } |
| 37 | 38 |
| 38 mojom("mojom_parser") { | 39 mojom("mojom_parser") { |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 "//components/autofill/core/browser", | 111 "//components/autofill/core/browser", |
| 111 "//components/autofill/core/browser:test_support", | 112 "//components/autofill/core/browser:test_support", |
| 112 "//components/payments/core", | 113 "//components/payments/core", |
| 113 "//content/test:test_support", | 114 "//content/test:test_support", |
| 114 "//net:test_support", | 115 "//net:test_support", |
| 115 "//testing/gtest", | 116 "//testing/gtest", |
| 116 "//third_party/icu", | 117 "//third_party/icu", |
| 117 "//third_party/libaddressinput:test_support", | 118 "//third_party/libaddressinput:test_support", |
| 118 ] | 119 ] |
| 119 } | 120 } |
| OLD | NEW |