| 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 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 710 ] | 710 ] |
| 711 outputs = [ | 711 outputs = [ |
| 712 "{{bundle_resources_dir}}/" + | 712 "{{bundle_resources_dir}}/" + |
| 713 "{{source_root_relative_dir}}/{{source_file_part}}", | 713 "{{source_root_relative_dir}}/{{source_file_part}}", |
| 714 ] | 714 ] |
| 715 } | 715 } |
| 716 | 716 |
| 717 # GYP version: ui/base/ui_base_tests.gyp:ui_base_unittests | 717 # GYP version: ui/base/ui_base_tests.gyp:ui_base_unittests |
| 718 test("ui_base_unittests") { | 718 test("ui_base_unittests") { |
| 719 sources = [ | 719 sources = [ |
| 720 "clipboard/clipboard_mac_unittest.mm", |
| 720 "clipboard/clipboard_util_mac_unittest.mm", | 721 "clipboard/clipboard_util_mac_unittest.mm", |
| 721 "l10n/l10n_util_mac_unittest.mm", | 722 "l10n/l10n_util_mac_unittest.mm", |
| 722 "l10n/l10n_util_unittest.cc", | 723 "l10n/l10n_util_unittest.cc", |
| 723 "l10n/l10n_util_win_unittest.cc", | 724 "l10n/l10n_util_win_unittest.cc", |
| 724 "l10n/time_format_unittest.cc", | 725 "l10n/time_format_unittest.cc", |
| 725 "layout_unittest.cc", | 726 "layout_unittest.cc", |
| 726 "material_design/material_design_controller_unittest.cc", | 727 "material_design/material_design_controller_unittest.cc", |
| 727 "models/tree_node_iterator_unittest.cc", | 728 "models/tree_node_iterator_unittest.cc", |
| 728 "resource/data_pack_literal.cc", | 729 "resource/data_pack_literal.cc", |
| 729 "resource/data_pack_unittest.cc", | 730 "resource/data_pack_unittest.cc", |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 if (is_mac) { | 951 if (is_mac) { |
| 951 mac_framework_bundle("ui_unittests_framework") { | 952 mac_framework_bundle("ui_unittests_framework") { |
| 952 testonly = true | 953 testonly = true |
| 953 deps = [ | 954 deps = [ |
| 954 "//ui/resources:ui_test_pak_bundle_data", | 955 "//ui/resources:ui_test_pak_bundle_data", |
| 955 ] | 956 ] |
| 956 info_plist = "test/framework-Info.plist" | 957 info_plist = "test/framework-Info.plist" |
| 957 output_name = "ui_unittests Framework" | 958 output_name = "ui_unittests Framework" |
| 958 } | 959 } |
| 959 } | 960 } |
| OLD | NEW |