| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 "offline_pages/offline_page_suggestions_provider.cc", | 50 "offline_pages/offline_page_suggestions_provider.cc", |
| 51 "offline_pages/offline_page_suggestions_provider.h", | 51 "offline_pages/offline_page_suggestions_provider.h", |
| 52 "physical_web_pages/physical_web_page_suggestions_provider.cc", | 52 "physical_web_pages/physical_web_page_suggestions_provider.cc", |
| 53 "physical_web_pages/physical_web_page_suggestions_provider.h", | 53 "physical_web_pages/physical_web_page_suggestions_provider.h", |
| 54 "pref_names.cc", | 54 "pref_names.cc", |
| 55 "pref_names.h", | 55 "pref_names.h", |
| 56 "request_throttler.cc", | 56 "request_throttler.cc", |
| 57 "request_throttler.h", | 57 "request_throttler.h", |
| 58 "switches.cc", | 58 "switches.cc", |
| 59 "switches.h", | 59 "switches.h", |
| 60 "user_classifier.cc", |
| 61 "user_classifier.h", |
| 60 ] | 62 ] |
| 61 | 63 |
| 62 public_deps = [ | 64 public_deps = [ |
| 63 "//base", | 65 "//base", |
| 64 "//components/keyed_service/core", | 66 "//components/keyed_service/core", |
| 65 "//components/leveldb_proto", | 67 "//components/leveldb_proto", |
| 66 "//components/prefs", | 68 "//components/prefs", |
| 67 "//components/signin/core/browser", | 69 "//components/signin/core/browser", |
| 68 "//components/suggestions", | 70 "//components/suggestions", |
| 69 "//components/sync", | 71 "//components/sync", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "//components/signin/core/common", | 135 "//components/signin/core/common", |
| 134 "//components/strings", | 136 "//components/strings", |
| 135 "//components/sync:test_support_sync_driver", | 137 "//components/sync:test_support_sync_driver", |
| 136 "//components/variations", | 138 "//components/variations", |
| 137 "//net:test_support", | 139 "//net:test_support", |
| 138 "//testing/gtest", | 140 "//testing/gtest", |
| 139 "//third_party/icu/", | 141 "//third_party/icu/", |
| 140 "//ui/gfx:test_support", | 142 "//ui/gfx:test_support", |
| 141 ] | 143 ] |
| 142 } | 144 } |
| OLD | NEW |