| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 3366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3377 # dependencies block below, rather than here. | 3377 # dependencies block below, rather than here. |
| 3378 # Unit tests should only depend on: | 3378 # Unit tests should only depend on: |
| 3379 # 1) everything that the chrome binaries depend on: | 3379 # 1) everything that the chrome binaries depend on: |
| 3380 "//chrome:browser_dependencies", | 3380 "//chrome:browser_dependencies", |
| 3381 "//chrome:child_dependencies", | 3381 "//chrome:child_dependencies", |
| 3382 | 3382 |
| 3383 # 2) test-specific support libraries: | 3383 # 2) test-specific support libraries: |
| 3384 ":test_support", | 3384 ":test_support", |
| 3385 ":test_support_unit", | 3385 ":test_support_unit", |
| 3386 "//base/test:test_support", | 3386 "//base/test:test_support", |
| 3387 "//components/browser_sync/browser:test_support", | 3387 "//components/browser_sync:test_support", |
| 3388 "//components/content_settings/core/test:test_support", | 3388 "//components/content_settings/core/test:test_support", |
| 3389 "//components/resources", | 3389 "//components/resources", |
| 3390 "//components/sync:test_support_sync_api", | 3390 "//components/sync:test_support_sync_api", |
| 3391 "//components/sync:test_support_sync_core", | 3391 "//components/sync:test_support_sync_core", |
| 3392 "//components/sync:test_support_sync_core_impl", | 3392 "//components/sync:test_support_sync_core_impl", |
| 3393 "//components/sync_sessions:test_support", | 3393 "//components/sync_sessions:test_support", |
| 3394 "//content/public/app:both", | 3394 "//content/public/app:both", |
| 3395 "//content/test:test_support", | 3395 "//content/test:test_support", |
| 3396 "//crypto:platform", | 3396 "//crypto:platform", |
| 3397 "//crypto:test_support", | 3397 "//crypto:test_support", |
| (...skipping 1604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5002 "touch_hud", | 5002 "touch_hud", |
| 5003 "ui", | 5003 "ui", |
| 5004 ] | 5004 ] |
| 5005 | 5005 |
| 5006 if (is_linux && !is_android) { | 5006 if (is_linux && !is_android) { |
| 5007 deps += [ "//components/font_service:manifest" ] | 5007 deps += [ "//components/font_service:manifest" ] |
| 5008 packaged_services += [ "font_service" ] | 5008 packaged_services += [ "font_service" ] |
| 5009 } | 5009 } |
| 5010 } | 5010 } |
| 5011 } | 5011 } |
| OLD | NEW |