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/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 gypi_values = exec_script( | 9 gypi_values = exec_script( |
10 "//build/gypi_to_gn.py", | 10 "//build/gypi_to_gn.py", |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 "fullscreen/fullscreen_controller_test.cc", | 440 "fullscreen/fullscreen_controller_test.cc", |
441 "fullscreen/fullscreen_controller_test.h", | 441 "fullscreen/fullscreen_controller_test.h", |
442 "login/login_prompt_test_utils.cc", | 442 "login/login_prompt_test_utils.cc", |
443 "login/login_prompt_test_utils.h", | 443 "login/login_prompt_test_utils.h", |
444 "passwords/manage_passwords_ui_controller_mock.cc", | 444 "passwords/manage_passwords_ui_controller_mock.cc", |
445 "passwords/manage_passwords_ui_controller_mock.h", | 445 "passwords/manage_passwords_ui_controller_mock.h", |
446 "pdf/pdf_browsertest_base.cc", | 446 "pdf/pdf_browsertest_base.cc", |
447 "pdf/pdf_browsertest_base.h", | 447 "pdf/pdf_browsertest_base.h", |
448 "test/test_confirm_bubble_model.cc", | 448 "test/test_confirm_bubble_model.cc", |
449 "test/test_confirm_bubble_model.h", | 449 "test/test_confirm_bubble_model.h", |
450 "views/find_bar_host_unittest_util_views.cc", | |
451 "website_settings/mock_permission_bubble_request.cc", | 450 "website_settings/mock_permission_bubble_request.cc", |
452 "website_settings/mock_permission_bubble_request.h", | 451 "website_settings/mock_permission_bubble_request.h", |
453 ] | 452 ] |
454 | 453 |
| 454 if (toolkit_views) { |
| 455 sources += [ |
| 456 "views/find_bar_host_unittest_util_views.cc", |
| 457 ] |
| 458 } |
| 459 |
455 deps = [ | 460 deps = [ |
456 ":ui", | 461 ":ui", |
457 "//chrome/app/theme:theme_resources", | 462 "//chrome/app/theme:theme_resources", |
458 "//chrome/browser", | 463 "//chrome/browser", |
459 "//content/public/browser", | 464 "//content/public/browser", |
460 "//content/public/common", | 465 "//content/public/common", |
461 "//content/test:test_support", | 466 "//content/test:test_support", |
462 "//net:test_support", | 467 "//net:test_support", |
463 "//skia", | 468 "//skia", |
464 "//testing/gtest", | 469 "//testing/gtest", |
465 "//ui/base", | 470 "//ui/base", |
466 ] | 471 ] |
467 | 472 |
468 forward_dependent_configs_from = [ | 473 forward_dependent_configs_from = [ |
469 ":ui", | 474 ":ui", |
470 ] | 475 ] |
471 } | 476 } |
OLD | NEW |