Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 559543003: Add chrome test support target to GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: no more gyp changes Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698