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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 script = "//chrome/tools/build/mac/generate_localizer" | 414 script = "//chrome/tools/build/mac/generate_localizer" |
415 sources = [ ] | 415 sources = [ ] |
416 table_path = "$target_gen_dir/ui_localizer_table.h" | 416 table_path = "$target_gen_dir/ui_localizer_table.h" |
417 outputs = [ table_path ] | 417 outputs = [ table_path ] |
418 args = [ rebase_path(table_path, root_build_dir) ] + | 418 args = [ rebase_path(table_path, root_build_dir) ] + |
419 rebase_path(nib_gypi_values.mac_translated_xibs, | 419 rebase_path(nib_gypi_values.mac_translated_xibs, |
420 root_build_dir, | 420 root_build_dir, |
421 "//chrome") | 421 "//chrome") |
422 } | 422 } |
423 } | 423 } |
| 424 |
| 425 # In GYP this is part of test_support_common. |
| 426 source_set("test_support") { |
| 427 testonly = true |
| 428 |
| 429 sources = [ |
| 430 "browser.h", |
| 431 "cocoa/find_bar/find_bar_host_unittest_util_cocoa.mm", |
| 432 "cocoa/run_loop_testing.h", |
| 433 "cocoa/run_loop_testing.mm", |
| 434 "find_bar/find_bar_host_unittest_util.h", |
| 435 "fullscreen/fullscreen_controller_state_test.cc", |
| 436 "fullscreen/fullscreen_controller_state_test.h", |
| 437 "fullscreen/fullscreen_controller_state_tests.h", |
| 438 "fullscreen/fullscreen_controller_test.cc", |
| 439 "fullscreen/fullscreen_controller_test.h", |
| 440 "login/login_prompt_test_utils.cc", |
| 441 "login/login_prompt_test_utils.h", |
| 442 "passwords/manage_passwords_ui_controller_mock.cc", |
| 443 "passwords/manage_passwords_ui_controller_mock.h", |
| 444 "pdf/pdf_browsertest_base.cc", |
| 445 "pdf/pdf_browsertest_base.h", |
| 446 "test/test_confirm_bubble_model.cc", |
| 447 "test/test_confirm_bubble_model.h", |
| 448 "views/find_bar_host_unittest_util_views.cc", |
| 449 "website_settings/mock_permission_bubble_request.cc", |
| 450 "website_settings/mock_permission_bubble_request.h", |
| 451 ] |
| 452 |
| 453 deps = [ |
| 454 ":ui", |
| 455 "//chrome/app/theme:theme_resources", |
| 456 "//chrome/browser", |
| 457 "//content/public/browser", |
| 458 "//content/public/common", |
| 459 "//content/test:test_support", |
| 460 "//net:test_support", |
| 461 "//skia", |
| 462 "//testing/gtest", |
| 463 "//ui/base", |
| 464 ] |
| 465 |
| 466 forward_dependent_configs_from = [ |
| 467 ":ui", |
| 468 ] |
| 469 } |
OLD | NEW |