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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 static_library("browser") { | 7 static_library("browser") { |
8 sources = [ | 8 sources = [ |
9 "content_autofill_driver.cc", | 9 "content_autofill_driver.cc", |
10 "content_autofill_driver.h", | 10 "content_autofill_driver.h", |
(...skipping 19 matching lines...) Expand all Loading... |
30 "//components/strings", | 30 "//components/strings", |
31 "//components/user_prefs", | 31 "//components/user_prefs", |
32 "//components/webdata/common", | 32 "//components/webdata/common", |
33 "//content/public/browser", | 33 "//content/public/browser", |
34 "//content/public/common", | 34 "//content/public/common", |
35 "//device/geolocation", | 35 "//device/geolocation", |
36 "//google_apis", | 36 "//google_apis", |
37 "//gpu/config", | 37 "//gpu/config", |
38 "//mojo/common:common_base", | 38 "//mojo/common:common_base", |
39 "//net", | 39 "//net", |
| 40 "//ppapi/features", |
40 "//services/service_manager/public/cpp", | 41 "//services/service_manager/public/cpp", |
41 "//sql", | 42 "//sql", |
42 "//third_party/icu", | 43 "//third_party/icu", |
43 "//third_party/libphonenumber", | 44 "//third_party/libphonenumber", |
44 "//ui/base", | 45 "//ui/base", |
45 "//ui/display", | 46 "//ui/display", |
46 "//ui/gfx", | 47 "//ui/gfx", |
47 "//ui/gfx/geometry", | 48 "//ui/gfx/geometry", |
48 "//url", | 49 "//url", |
49 ] | 50 ] |
(...skipping 26 matching lines...) Expand all Loading... |
76 "//google_apis", | 77 "//google_apis", |
77 "//google_apis:test_support", | 78 "//google_apis:test_support", |
78 "//mojo/common:common_base", | 79 "//mojo/common:common_base", |
79 "//net", | 80 "//net", |
80 "//net:test_support", | 81 "//net:test_support", |
81 "//services/service_manager/public/cpp", | 82 "//services/service_manager/public/cpp", |
82 "//testing/gmock", | 83 "//testing/gmock", |
83 "//testing/gtest", | 84 "//testing/gtest", |
84 ] | 85 ] |
85 } | 86 } |
OLD | NEW |