Chromium Code Reviews| 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_delegate.h", | |
| 12 "payment_request_dialog.h", | 11 "payment_request_dialog.h", |
| 13 "payment_request_spec.cc", | 12 "payment_request_spec.cc", |
| 14 "payment_request_spec.h", | 13 "payment_request_spec.h", |
| 15 "payment_request_state.cc", | 14 "payment_request_state.cc", |
| 16 "payment_request_state.h", | 15 "payment_request_state.h", |
| 17 "payment_request_web_contents_manager.cc", | 16 "payment_request_web_contents_manager.cc", |
| 18 "payment_request_web_contents_manager.h", | 17 "payment_request_web_contents_manager.h", |
| 19 "payment_response_helper.cc", | 18 "payment_response_helper.cc", |
| 20 "payment_response_helper.h", | 19 "payment_response_helper.h", |
| 21 ] | 20 ] |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 98 ] | 97 ] |
| 99 | 98 |
| 100 deps = [ | 99 deps = [ |
| 101 ":content", | 100 ":content", |
| 102 ":mojom", | 101 ":mojom", |
| 103 ":utils", | 102 ":utils", |
| 104 "//base", | 103 "//base", |
| 105 "//base/test:test_support", | 104 "//base/test:test_support", |
| 106 "//components/autofill/core/browser", | 105 "//components/autofill/core/browser", |
| 107 "//components/autofill/core/browser:test_support", | 106 "//components/autofill/core/browser:test_support", |
| 107 "//components/payments/core:core", | |
|
Mathieu
2017/04/05 14:05:59
//components/payments/core is sufficient (an optim
| |
| 108 "//content/test:test_support", | 108 "//content/test:test_support", |
| 109 "//net:test_support", | 109 "//net:test_support", |
| 110 "//testing/gtest", | 110 "//testing/gtest", |
| 111 "//third_party/icu", | 111 "//third_party/icu", |
| 112 "//third_party/libaddressinput:test_support", | 112 "//third_party/libaddressinput:test_support", |
| 113 ] | 113 ] |
| 114 } | 114 } |
| OLD | NEW |