Chromium Code Reviews| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 222 "//components/visitedlink/common", # Blocked on content. | 222 "//components/visitedlink/common", # Blocked on content. |
| 223 "//components/visitedlink/renderer", # Blocked on blink | 223 "//components/visitedlink/renderer", # Blocked on blink |
| 224 "//components/web_cache/browser", # Blocked on content and blink. | 224 "//components/web_cache/browser", # Blocked on content and blink. |
| 225 "//components/web_cache/renderer", # Blocked on content and blink. | 225 "//components/web_cache/renderer", # Blocked on content and blink. |
| 226 "//components/web_modal", # Blocked on content. | 226 "//components/web_modal", # Blocked on content. |
| 227 ] | 227 ] |
| 228 } | 228 } |
| 229 | 229 |
| 230 if (!is_ios && !is_android) { | 230 if (!is_ios && !is_android) { |
| 231 deps += [ | 231 deps += [ |
| 232 "//components/certificate_transparency", | |
|
davidben
2015/07/16 21:53:38
This doesn't match the gyp which only excludes it
Eran Messeri
2015/07/17 15:40:23
My bad, fixed.
| |
| 232 "//components/copresence", | 233 "//components/copresence", |
| 233 "//components/storage_monitor", | 234 "//components/storage_monitor", |
| 234 ] | 235 ] |
| 235 } | 236 } |
| 236 | 237 |
| 237 if (!is_ios) { | 238 if (!is_ios) { |
| 238 deps += [ | 239 deps += [ |
| 239 "//components/app_modal", | 240 "//components/app_modal", |
| 240 "//components/browsing_data", | 241 "//components/browsing_data", |
| 241 "//components/guest_view/browser", | 242 "//components/guest_view/browser", |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 434 | 435 |
| 435 deps = [ | 436 deps = [ |
| 436 "//base", | 437 "//base", |
| 437 "//base/test:test_support_perf", | 438 "//base/test:test_support_perf", |
| 438 "//testing/gtest", | 439 "//testing/gtest", |
| 439 "//testing/perf", | 440 "//testing/perf", |
| 440 "//content/test:test_support", | 441 "//content/test:test_support", |
| 441 "//components/visitedlink/browser", | 442 "//components/visitedlink/browser", |
| 442 ] | 443 ] |
| 443 } | 444 } |
| OLD | NEW |