| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 3370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3381 "//ui/base", | 3381 "//ui/base", |
| 3382 "//ui/gfx:test_support", | 3382 "//ui/gfx:test_support", |
| 3383 "//ui/shell_dialogs", | 3383 "//ui/shell_dialogs", |
| 3384 ] | 3384 ] |
| 3385 | 3385 |
| 3386 if (toolkit_views && (!is_mac || mac_views_browser)) { | 3386 if (toolkit_views && (!is_mac || mac_views_browser)) { |
| 3387 sources += [ | 3387 sources += [ |
| 3388 "views/find_bar_host_unittest_util_views.cc", | 3388 "views/find_bar_host_unittest_util_views.cc", |
| 3389 "views/toolbar/browser_action_test_util_views.cc", | 3389 "views/toolbar/browser_action_test_util_views.cc", |
| 3390 ] | 3390 ] |
| 3391 deps += [ "//ui/aura" ] | 3391 if (!is_mac) { |
| 3392 deps += [ "//ui/aura" ] |
| 3393 } |
| 3392 } else { | 3394 } else { |
| 3393 sources += [ | 3395 sources += [ |
| 3394 "cocoa/extensions/browser_action_test_util_mac.mm", | 3396 "cocoa/extensions/browser_action_test_util_mac.mm", |
| 3395 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm", | 3397 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm", |
| 3396 ] | 3398 ] |
| 3397 } | 3399 } |
| 3398 | 3400 |
| 3399 if (is_android) { | 3401 if (is_android) { |
| 3400 sources -= [ | 3402 sources -= [ |
| 3401 "exclusive_access/fullscreen_controller_state_test.cc", | 3403 "exclusive_access/fullscreen_controller_state_test.cc", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 3415 "passwords/passwords_model_delegate_mock.cc", | 3417 "passwords/passwords_model_delegate_mock.cc", |
| 3416 "passwords/passwords_model_delegate_mock.h", | 3418 "passwords/passwords_model_delegate_mock.h", |
| 3417 ] | 3419 ] |
| 3418 deps += [ "//chrome/test:test_support_ui" ] | 3420 deps += [ "//chrome/test:test_support_ui" ] |
| 3419 } | 3421 } |
| 3420 | 3422 |
| 3421 if (enable_extensions) { | 3423 if (enable_extensions) { |
| 3422 deps += [ "//extensions/browser" ] | 3424 deps += [ "//extensions/browser" ] |
| 3423 } | 3425 } |
| 3424 } | 3426 } |
| OLD | NEW |