| 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 3400 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 3411       "webui/local_discovery/local_discovery_ui_handler.h", | 3411       "webui/local_discovery/local_discovery_ui_handler.h", | 
| 3412     ] | 3412     ] | 
| 3413   } | 3413   } | 
| 3414 } | 3414 } | 
| 3415 | 3415 | 
| 3416 # In GYP this is part of test_support_common. | 3416 # In GYP this is part of test_support_common. | 
| 3417 static_library("test_support") { | 3417 static_library("test_support") { | 
| 3418   testonly = true | 3418   testonly = true | 
| 3419 | 3419 | 
| 3420   sources = [ | 3420   sources = [ | 
| 3421     "cocoa/cocoa_test_helper.h", | 3421     "cocoa/test/cocoa_test_helper.h", | 
| 3422     "cocoa/cocoa_test_helper.mm", | 3422     "cocoa/test/cocoa_test_helper.mm", | 
| 3423     "cocoa/run_loop_testing.h", | 3423     "cocoa/test/run_loop_testing.h", | 
| 3424     "cocoa/run_loop_testing.mm", | 3424     "cocoa/test/run_loop_testing.mm", | 
| 3425     "find_bar/find_bar_host_unittest_util.h", | 3425     "find_bar/find_bar_host_unittest_util.h", | 
| 3426     "login/login_handler_test_utils.cc", | 3426     "login/login_handler_test_utils.cc", | 
| 3427     "login/login_handler_test_utils.h", | 3427     "login/login_handler_test_utils.h", | 
| 3428     "toolbar/test_toolbar_action_view_controller.cc", | 3428     "toolbar/test_toolbar_action_view_controller.cc", | 
| 3429     "toolbar/test_toolbar_action_view_controller.h", | 3429     "toolbar/test_toolbar_action_view_controller.h", | 
| 3430   ] | 3430   ] | 
| 3431   public_deps = [ | 3431   public_deps = [ | 
| 3432     ":ui", | 3432     ":ui", | 
| 3433   ] | 3433   ] | 
| 3434   deps = [ | 3434   deps = [ | 
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 3482       "test/test_confirm_bubble_model.cc", | 3482       "test/test_confirm_bubble_model.cc", | 
| 3483       "test/test_confirm_bubble_model.h", | 3483       "test/test_confirm_bubble_model.h", | 
| 3484     ] | 3484     ] | 
| 3485     deps += [ "//chrome/test:test_support_ui" ] | 3485     deps += [ "//chrome/test:test_support_ui" ] | 
| 3486   } | 3486   } | 
| 3487 | 3487 | 
| 3488   if (enable_extensions) { | 3488   if (enable_extensions) { | 
| 3489     deps += [ "//extensions/browser" ] | 3489     deps += [ "//extensions/browser" ] | 
| 3490   } | 3490   } | 
| 3491 } | 3491 } | 
| OLD | NEW | 
|---|