| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/sanitizers/sanitizers.gni") | 7 import("//build/config/sanitizers/sanitizers.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//ui/base/ui_features.gni") | 10 import("//ui/base/ui_features.gni") |
| (...skipping 698 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 testonly = true | 709 testonly = true |
| 710 sources = [ | 710 sources = [ |
| 711 "test/data/data_pack_unittest/truncated-header.pak", | 711 "test/data/data_pack_unittest/truncated-header.pak", |
| 712 ] | 712 ] |
| 713 outputs = [ | 713 outputs = [ |
| 714 "{{bundle_resources_dir}}/" + | 714 "{{bundle_resources_dir}}/" + |
| 715 "{{source_root_relative_dir}}/{{source_file_part}}", | 715 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 716 ] | 716 ] |
| 717 } | 717 } |
| 718 | 718 |
| 719 # GYP version: ui/base/ui_base_tests.gyp:ui_base_unittests | |
| 720 test("ui_base_unittests") { | 719 test("ui_base_unittests") { |
| 721 sources = [ | 720 sources = [ |
| 722 "clipboard/clipboard_mac_unittest.mm", | 721 "clipboard/clipboard_mac_unittest.mm", |
| 723 "clipboard/clipboard_util_mac_unittest.mm", | 722 "clipboard/clipboard_util_mac_unittest.mm", |
| 724 "l10n/l10n_util_mac_unittest.mm", | 723 "l10n/l10n_util_mac_unittest.mm", |
| 725 "l10n/l10n_util_unittest.cc", | 724 "l10n/l10n_util_unittest.cc", |
| 726 "l10n/l10n_util_win_unittest.cc", | 725 "l10n/l10n_util_win_unittest.cc", |
| 727 "l10n/time_format_unittest.cc", | 726 "l10n/time_format_unittest.cc", |
| 728 "layout_unittest.cc", | 727 "layout_unittest.cc", |
| 729 "material_design/material_design_controller_unittest.cc", | 728 "material_design/material_design_controller_unittest.cc", |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 954 if (is_mac) { | 953 if (is_mac) { |
| 955 mac_framework_bundle("ui_unittests_framework") { | 954 mac_framework_bundle("ui_unittests_framework") { |
| 956 testonly = true | 955 testonly = true |
| 957 deps = [ | 956 deps = [ |
| 958 "//ui/resources:ui_test_pak_bundle_data", | 957 "//ui/resources:ui_test_pak_bundle_data", |
| 959 ] | 958 ] |
| 960 info_plist = "test/framework-Info.plist" | 959 info_plist = "test/framework-Info.plist" |
| 961 output_name = "ui_unittests Framework" | 960 output_name = "ui_unittests Framework" |
| 962 } | 961 } |
| 963 } | 962 } |
| OLD | NEW |