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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
9 | 9 |
10 # Collection of all components. You wouldn't link to this, but this is rather | 10 # Collection of all components. You wouldn't link to this, but this is rather |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 ] | 232 ] |
233 } | 233 } |
234 | 234 |
235 if (!is_ios) { | 235 if (!is_ios) { |
236 deps += [ | 236 deps += [ |
237 "//components/app_modal", | 237 "//components/app_modal", |
238 "//components/browsing_data", | 238 "//components/browsing_data", |
239 "//components/guest_view/browser", | 239 "//components/guest_view/browser", |
240 "//components/guest_view/common", | 240 "//components/guest_view/common", |
241 "//components/guest_view/renderer", | 241 "//components/guest_view/renderer", |
| 242 "//components/safe_json_parser", |
242 "//components/scheduler", | 243 "//components/scheduler", |
243 ] | 244 ] |
244 } | 245 } |
245 | 246 |
246 if (toolkit_views) { | 247 if (toolkit_views) { |
247 deps += [ "//components/constrained_window" ] | 248 deps += [ "//components/constrained_window" ] |
248 } | 249 } |
249 } | 250 } |
250 | 251 |
251 # To add a unit test to this target, make a "unit_test" source_set in your | 252 # To add a unit test to this target, make a "unit_test" source_set in your |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
417 | 418 |
418 deps = [ | 419 deps = [ |
419 "//base", | 420 "//base", |
420 "//base/test:test_support_perf", | 421 "//base/test:test_support_perf", |
421 "//testing/gtest", | 422 "//testing/gtest", |
422 "//testing/perf", | 423 "//testing/perf", |
423 "//content/test:test_support", | 424 "//content/test:test_support", |
424 "//components/visitedlink/browser", | 425 "//components/visitedlink/browser", |
425 ] | 426 ] |
426 } | 427 } |
OLD | NEW |