| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 | 6 |
| 7 static_library("ipc_traits") { | 7 static_library("ipc_traits") { |
| 8 sources = [ | 8 sources = [ |
| 9 "autofill_message_generator.cc", | 9 "autofill_message_generator.cc", |
| 10 "autofill_param_traits_macros.h", | 10 "autofill_param_traits_macros.h", |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 mojom("mojo_interfaces") { | 21 mojom("mojo_interfaces") { |
| 22 sources = [ | 22 sources = [ |
| 23 "autofill_agent.mojom", | 23 "autofill_agent.mojom", |
| 24 "autofill_driver.mojom", | 24 "autofill_driver.mojom", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 public_deps = [ | 27 public_deps = [ |
| 28 ":mojo_types", | 28 ":mojo_types", |
| 29 "//mojo/common:common_custom_types", | 29 "//mojo/common:common_custom_types", |
| 30 "//ui/gfx/geometry/mojo", | 30 "//ui/gfx/geometry/mojo", |
| 31 "//url/mojo:url_mojom_gurl", |
| 31 ] | 32 ] |
| 32 } | 33 } |
| 33 | 34 |
| 34 mojom("mojo_types") { | 35 mojom("mojo_types") { |
| 35 sources = [ | 36 sources = [ |
| 36 "autofill_types.mojom", | 37 "autofill_types.mojom", |
| 37 ] | 38 ] |
| 38 | 39 |
| 39 public_deps = [ | 40 public_deps = [ |
| 40 "//mojo/common:common_custom_types", | 41 "//mojo/common:common_custom_types", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 64 ] | 65 ] |
| 65 | 66 |
| 66 deps = [ | 67 deps = [ |
| 67 "//base", | 68 "//base", |
| 68 "//components/autofill/core/browser:test_support", | 69 "//components/autofill/core/browser:test_support", |
| 69 "//components/password_manager/core/common", | 70 "//components/password_manager/core/common", |
| 70 "//mojo/public/cpp/bindings", | 71 "//mojo/public/cpp/bindings", |
| 71 "//testing/gtest", | 72 "//testing/gtest", |
| 72 ] | 73 ] |
| 73 } | 74 } |
| OLD | NEW |