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

Unified Diff: chrome/BUILD.gn

Issue 2272713004: Reland of Enable whitelist generation for official builds. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/toolchain/wrapper_utils.py ('k') | chrome/chrome_repack_locales.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
index b3a7b8c3356400bd6d5a2af4a4af065e200c1d9e..46204650912a161f0d43e937444c9b27990cbf7a 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -17,6 +17,10 @@ import("//chrome/version.gni")
import("//ui/base/ui_features.gni")
import("//v8/gni/v8.gni")
+if (enable_resource_whitelist_generation) {
+ android_resource_whitelist = "$root_gen_dir/chrome/resource_whitelist.txt"
+}
+
if (is_android) {
import("//build/config/android/rules.gni")
} else if (is_mac) {
@@ -1455,6 +1459,11 @@ repack("packed_extra_resources") {
} else {
output = "$root_out_dir/resources.pak"
}
+
+ if (enable_resource_whitelist_generation) {
+ repack_whitelist = android_resource_whitelist
+ deps += [ "//chrome:resource_whitelist" ]
+ }
}
# GYP version: chrome/chrome_resources.gyp:browser_tests_pak
@@ -1569,6 +1578,11 @@ template("chrome_repack_percent") {
}
output = repack_output_file
+
+ if (enable_resource_whitelist_generation) {
+ repack_whitelist = android_resource_whitelist
+ deps += [ "//chrome:resource_whitelist" ]
+ }
}
copy(copy_name) {
@@ -1682,6 +1696,33 @@ if (is_android) {
}
}
+if (enable_resource_whitelist_generation) {
+ action("resource_whitelist") {
+ deps = [
+ "//chrome/android:chrome",
+ ]
+ script = "//tools/resources/generate_resource_whitelist.py"
+
+ _infile = "$root_out_dir/libchrome$shlib_extension.whitelist"
+ inputs = [
+ _infile,
+ ]
+
+ _outfile = android_resource_whitelist
+ outputs = [
+ _outfile,
+ ]
+
+ args = [
+ "-i",
+ rebase_path(_infile, root_build_dir),
+ "-o",
+ rebase_path(_outfile, root_build_dir),
+ "--out-dir=.",
+ ]
+ }
+}
+
if (is_linux) {
action("manpage") {
if (is_chrome_branded) {
« no previous file with comments | « build/toolchain/wrapper_utils.py ('k') | chrome/chrome_repack_locales.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698