| 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 "fullscreen/fullscreen_controller_test.cc", | 433 "fullscreen/fullscreen_controller_test.cc", |
| 434 "fullscreen/fullscreen_controller_test.h", | 434 "fullscreen/fullscreen_controller_test.h", |
| 435 "login/login_prompt_test_utils.cc", | 435 "login/login_prompt_test_utils.cc", |
| 436 "login/login_prompt_test_utils.h", | 436 "login/login_prompt_test_utils.h", |
| 437 "passwords/manage_passwords_ui_controller_mock.cc", | 437 "passwords/manage_passwords_ui_controller_mock.cc", |
| 438 "passwords/manage_passwords_ui_controller_mock.h", | 438 "passwords/manage_passwords_ui_controller_mock.h", |
| 439 "pdf/pdf_browsertest_base.cc", | 439 "pdf/pdf_browsertest_base.cc", |
| 440 "pdf/pdf_browsertest_base.h", | 440 "pdf/pdf_browsertest_base.h", |
| 441 "test/test_confirm_bubble_model.cc", | 441 "test/test_confirm_bubble_model.cc", |
| 442 "test/test_confirm_bubble_model.h", | 442 "test/test_confirm_bubble_model.h", |
| 443 "views/find_bar_host_unittest_util_views.cc", | |
| 444 "website_settings/mock_permission_bubble_request.cc", | 443 "website_settings/mock_permission_bubble_request.cc", |
| 445 "website_settings/mock_permission_bubble_request.h", | 444 "website_settings/mock_permission_bubble_request.h", |
| 446 ] | 445 ] |
| 447 | 446 |
| 447 if (toolkit_views) { |
| 448 sources += [ |
| 449 "views/find_bar_host_unittest_util_views.cc", |
| 450 ] |
| 451 } |
| 452 |
| 448 public_deps = [ | 453 public_deps = [ |
| 449 ":ui", | 454 ":ui", |
| 450 ] | 455 ] |
| 451 deps = [ | 456 deps = [ |
| 452 "//chrome/app/theme:theme_resources", | 457 "//chrome/app/theme:theme_resources", |
| 453 "//chrome/browser", | 458 "//chrome/browser", |
| 454 "//content/public/browser", | 459 "//content/public/browser", |
| 455 "//content/public/common", | 460 "//content/public/common", |
| 456 "//content/test:test_support", | 461 "//content/test:test_support", |
| 457 "//net:test_support", | 462 "//net:test_support", |
| 458 "//skia", | 463 "//skia", |
| 459 "//testing/gtest", | 464 "//testing/gtest", |
| 460 "//ui/base", | 465 "//ui/base", |
| 461 ] | 466 ] |
| 462 } | 467 } |
| OLD | NEW |