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

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

Issue 2000253006: Implement URL and Origin typemaps/struct traits for blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try to fix gyp rules Created 4 years, 6 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("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/WebKit/Source/build/scripts/scripts.gni") 7 import("//third_party/WebKit/Source/build/scripts/scripts.gni")
8 import("//third_party/WebKit/Source/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/platform/platform.gni") 9 import("//third_party/WebKit/Source/platform/platform.gni")
10 import("//third_party/WebKit/Source/platform/platform_generated.gni") 10 import("//third_party/WebKit/Source/platform/platform_generated.gni")
(...skipping 284 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 ":inspector_injected_script", 295 ":inspector_injected_script",
296 ":inspector_protocol_sources", 296 ":inspector_protocol_sources",
297 ":runtime_enabled_features", 297 ":runtime_enabled_features",
298 ] 298 ]
299 } 299 }
300 300
301 # TODO(brettw) Objective C Renaming postbuild steps on Mac. 301 # TODO(brettw) Objective C Renaming postbuild steps on Mac.
302 # blink_platform target in blink_platform.gyp 302 # blink_platform target in blink_platform.gyp
303 component("platform") { 303 component("platform") {
304 visibility = [] # Allow re-assignment of list. 304 visibility = [] # Allow re-assignment of list.
305 visibility = [ "//third_party/WebKit/*" ] 305 visibility = [
306 "//third_party/WebKit/*",
307 "//url/mojo:url_mojom_origin_blink_cpp_sources",
308 "//url/mojo:url_mojom_gurl_blink_cpp_sources",
309 ]
306 output_name = "blink_platform" 310 output_name = "blink_platform"
307 311
308 sources = platform_files 312 sources = platform_files
309 sources -= blink_platform_neon_files 313 sources -= blink_platform_neon_files
310 sources -= blink_platform_sse_files 314 sources -= blink_platform_sse_files
311 315
312 # Add in the generated files. 316 # Add in the generated files.
313 sources += get_target_outputs(":character_data") + 317 sources += get_target_outputs(":character_data") +
314 get_target_outputs(":color_data") + 318 get_target_outputs(":color_data") +
315 get_target_outputs(":font_family_names") + 319 get_target_outputs(":font_family_names") +
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 "//mojo/edk/test:test_support", 572 "//mojo/edk/test:test_support",
569 "//mojo/public/cpp/bindings/tests:for_blink_tests", 573 "//mojo/public/cpp/bindings/tests:for_blink_tests",
570 "//skia", 574 "//skia",
571 "//testing/gmock", 575 "//testing/gmock",
572 "//testing/gtest", 576 "//testing/gtest",
573 "//third_party/WebKit/Source/wtf", 577 "//third_party/WebKit/Source/wtf",
574 "//third_party/harfbuzz-ng", 578 "//third_party/harfbuzz-ng",
575 "//ui/gfx", 579 "//ui/gfx",
576 "//ui/gfx/geometry", 580 "//ui/gfx/geometry",
577 "//url", 581 "//url",
582 "//url/mojo:test_url_mojom_gurl_blink",
578 ] 583 ]
579 584
580 data_deps = [ 585 data_deps = [
581 ":blink_platform_unittests_data", 586 ":blink_platform_unittests_data",
582 ] 587 ]
583 588
584 defines = [ "INSIDE_BLINK" ] 589 defines = [ "INSIDE_BLINK" ]
585 590
586 include_dirs = [ "$root_gen_dir/blink" ] 591 include_dirs = [ "$root_gen_dir/blink" ]
587 } 592 }
(...skipping 30 matching lines...) Expand all
618 } 623 }
619 624
620 if (current_cpu == "x86" || current_cpu == "x64") { 625 if (current_cpu == "x86" || current_cpu == "x64") {
621 source_set("blink_x86_sse") { 626 source_set("blink_x86_sse") {
622 sources = blink_platform_sse_files 627 sources = blink_platform_sse_files
623 deps = [ 628 deps = [
624 ":blink_common", 629 ":blink_common",
625 ] 630 ]
626 } 631 }
627 } 632 }
OLDNEW
« no previous file with comments | « mojo/public/tools/bindings/blink_bindings_configuration.gni ('k') | third_party/WebKit/Source/platform/blink_platform.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698