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

Unified Diff: components/test_runner/BUILD.gn

Issue 1915863003: [Mac/GN] Build content_shell and content_shell_framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-info-plist
Patch Set: fix_helper_link_framework comment Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/mac/xcrun.py ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/test_runner/BUILD.gn
diff --git a/components/test_runner/BUILD.gn b/components/test_runner/BUILD.gn
index 6973f1edb5517b1dffd7dcd54de3e9e439a12209..7cd8530ba193fe5f497be056f81494f8f1806194 100644
--- a/components/test_runner/BUILD.gn
+++ b/components/test_runner/BUILD.gn
@@ -158,20 +158,24 @@ if (is_android) {
]
}
}
+if (is_mac) {
+ bundle_data("test_runner_bundle_data") {
+ sources = [
+ "resources/fonts/AHEM____.TTF",
+ "resources/fonts/ChromiumAATTest.ttf",
+ ]
+
+ outputs = [
+ "{{bundle_resources_dir}}/{{source_file_part}}",
+ ]
+ }
+}
group("resources") {
deps = []
if (is_mac) {
- # TODO(GYP) Mac bundle resources.
- #'all_dependent_settings': {
- # 'mac_bundle_resources': [
- # 'resources/fonts/AHEM____.TTF',
- # 'resources/fonts/ChromiumAATTest.ttf',
- # '<(SHARED_INTERMEDIATE_DIR)/webkit/missingImage.png',
- # '<(SHARED_INTERMEDIATE_DIR)/webkit/textAreaResizeCorner.png',
- # ],
- #},
+ deps += [ ":test_runner_bundle_data" ]
} else {
deps += [ ":copy_ahem" ]
}
« no previous file with comments | « build/config/mac/xcrun.py ('k') | content/shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698