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

Side by Side Diff: third_party/WebKit/Source/platform/BUILD.gn

Issue 2403583002: More changes to support hermetic Xcode toolchain in GN. (Closed)
Patch Set: Comments from thakis. Created 4 years, 2 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
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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 9 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
10 import("//third_party/WebKit/Source/config.gni") 10 import("//third_party/WebKit/Source/config.gni")
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 color_data_gperf = "ColorData.gperf" 121 color_data_gperf = "ColorData.gperf"
122 inputs = [ 122 inputs = [
123 color_data_gperf, 123 color_data_gperf,
124 ] 124 ]
125 125
126 output_file = "$blink_platform_output_dir/ColorData.cpp" 126 output_file = "$blink_platform_output_dir/ColorData.cpp"
127 outputs = [ 127 outputs = [
128 output_file, 128 output_file,
129 ] 129 ]
130 130
131 args = [ 131 args = []
132 if (is_mac && !use_system_xcode) {
133 args += [
134 "--developer_dir",
135 hermetic_xcode_path,
136 ]
137 }
138
139 args += [
132 gperf_exe, 140 gperf_exe,
133 "--key-positions=*", 141 "--key-positions=*",
134 "-D", 142 "-D",
135 "-s", 143 "-s",
136 "2", 144 "2",
137 rebase_path(color_data_gperf, root_build_dir), 145 rebase_path(color_data_gperf, root_build_dir),
138 "--output-file=" + rebase_path(output_file, root_build_dir), 146 "--output-file=" + rebase_path(output_file, root_build_dir),
139 ] 147 ]
140 } 148 }
141 149
(...skipping 1820 matching lines...) Expand 10 before | Expand all | Expand 10 after
1962 "//third_party/WebKit/Source:inside_blink", 1970 "//third_party/WebKit/Source:inside_blink",
1963 ] 1971 ]
1964 1972
1965 deps = [ 1973 deps = [
1966 ":test_support", 1974 ":test_support",
1967 "//cc/surfaces:surface_id", 1975 "//cc/surfaces:surface_id",
1968 "//testing/gmock", 1976 "//testing/gmock",
1969 "//testing/gtest", 1977 "//testing/gtest",
1970 ] 1978 ]
1971 } 1979 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698