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

Side by Side Diff: ui/gfx/BUILD.gn

Issue 2846463002: Add missing header files to GN files (4 of N) (Closed)
Patch Set: address comments Created 3 years, 7 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//device/vr/features/features.gni") 6 import("//device/vr/features/features.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//testing/libfuzzer/fuzzer_test.gni") 8 import("//testing/libfuzzer/fuzzer_test.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 } else { 282 } else {
283 # We don't support RenderText on these platforms. 283 # We don't support RenderText on these platforms.
284 } 284 }
285 285
286 if (is_android && enable_vr) { 286 if (is_android && enable_vr) {
287 sources -= [ 287 sources -= [
288 "platform_font_android.cc", 288 "platform_font_android.cc",
289 "text_utils_android.cc", 289 "text_utils_android.cc",
290 ] 290 ]
291 set_sources_assignment_filter([]) 291 set_sources_assignment_filter([])
292 sources += [ "platform_font_linux.cc" ] 292 sources += [
293 "platform_font_linux.cc",
294 "platform_font_linux.h",
295 ]
293 set_sources_assignment_filter(sources_assignment_filter) 296 set_sources_assignment_filter(sources_assignment_filter)
294 } 297 }
295 298
296 # iOS. 299 # iOS.
297 if (is_ios) { 300 if (is_ios) {
298 set_sources_assignment_filter([]) 301 set_sources_assignment_filter([])
299 sources += [ "scoped_cg_context_save_gstate_mac.h" ] 302 sources += [ "scoped_cg_context_save_gstate_mac.h" ]
300 set_sources_assignment_filter(sources_assignment_filter) 303 set_sources_assignment_filter(sources_assignment_filter)
301 } else { 304 } else {
302 deps += [ 305 deps += [
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
764 767
765 fuzzer_test("color_transform_fuzztest") { 768 fuzzer_test("color_transform_fuzztest") {
766 sources = [ 769 sources = [
767 "color_transform_fuzzer.cc", 770 "color_transform_fuzzer.cc",
768 ] 771 ]
769 deps = [ 772 deps = [
770 ":gfx", 773 ":gfx",
771 ] 774 ]
772 libfuzzer_options = [ "max_len=1024" ] 775 libfuzzer_options = [ "max_len=1024" ]
773 } 776 }
OLDNEW
« third_party/WebKit/Source/web/BUILD.gn ('K') | « third_party/WebKit/public/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698