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

Side by Side Diff: sky/engine/platform/BUILD.gn

Issue 746023002: Make absolute and sort all Sky headers (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/platform/AsyncMethodRunner.h ('k') | sky/engine/platform/CalculationValue.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//sky/engine/build/scripts/scripts.gni") 6 import("//sky/engine/build/scripts/scripts.gni")
7 import("//sky/engine/config.gni") 7 import("//sky/engine/config.gni")
8 8
9 # Most targets in this file are private actions so use that as the default. 9 # Most targets in this file are private actions so use that as the default.
10 visibility = [":*"] 10 visibility = [":*"]
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after
410 "graphics/skia/NativeImageSkia.h", 410 "graphics/skia/NativeImageSkia.h",
411 "graphics/skia/SkiaUtils.cpp", 411 "graphics/skia/SkiaUtils.cpp",
412 "graphics/skia/SkiaUtils.h", 412 "graphics/skia/SkiaUtils.h",
413 "graphics/skia/SkSizeHash.h", 413 "graphics/skia/SkSizeHash.h",
414 "graphics/StrokeData.cpp", 414 "graphics/StrokeData.cpp",
415 "graphics/StrokeData.h", 415 "graphics/StrokeData.h",
416 "graphics/ThreadSafeDataTransport.cpp", 416 "graphics/ThreadSafeDataTransport.cpp",
417 "graphics/ThreadSafeDataTransport.h", 417 "graphics/ThreadSafeDataTransport.h",
418 "graphics/UnacceleratedImageBufferSurface.cpp", 418 "graphics/UnacceleratedImageBufferSurface.cpp",
419 "graphics/UnacceleratedImageBufferSurface.h", 419 "graphics/UnacceleratedImageBufferSurface.h",
420 "heap/Handle.h",
420 "HostWindow.h", 421 "HostWindow.h",
421 "image-decoders/bmp/BMPImageDecoder.cpp", 422 "image-decoders/bmp/BMPImageDecoder.cpp",
422 "image-decoders/bmp/BMPImageDecoder.h", 423 "image-decoders/bmp/BMPImageDecoder.h",
423 "image-decoders/bmp/BMPImageReader.cpp", 424 "image-decoders/bmp/BMPImageReader.cpp",
424 "image-decoders/bmp/BMPImageReader.h", 425 "image-decoders/bmp/BMPImageReader.h",
425 "image-decoders/gif/GIFImageDecoder.cpp", 426 "image-decoders/gif/GIFImageDecoder.cpp",
426 "image-decoders/gif/GIFImageDecoder.h", 427 "image-decoders/gif/GIFImageDecoder.h",
427 "image-decoders/gif/GIFImageReader.cpp", 428 "image-decoders/gif/GIFImageReader.cpp",
428 "image-decoders/gif/GIFImageReader.h", 429 "image-decoders/gif/GIFImageReader.h",
429 "image-decoders/ico/ICOImageDecoder.cpp", 430 "image-decoders/ico/ICOImageDecoder.cpp",
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 642
642 include_dirs = [ 643 include_dirs = [
643 "$root_build_dir", 644 "$root_build_dir",
644 ] 645 ]
645 646
646 deps = [ 647 deps = [
647 ":make_platform_generated", 648 ":make_platform_generated",
648 "//base:base", 649 "//base:base",
649 "//gpu/command_buffer/client:gles2_c_lib", 650 "//gpu/command_buffer/client:gles2_c_lib",
650 "//mojo/application", 651 "//mojo/application",
651 "//mojo/common:common", 652 "//mojo/common",
653 "//mojo/environment:chromium",
652 "//mojo/public/c/system:for_shared_library", 654 "//mojo/public/c/system:for_shared_library",
653 "//mojo/public/cpp/bindings", 655 "//mojo/public/cpp/bindings",
654 "//mojo/public/cpp/system", 656 "//mojo/public/cpp/system",
655 "//mojo/public/cpp/utility", 657 "//mojo/public/cpp/utility",
658 "//mojo/services/public/interfaces/network",
656 "//skia", 659 "//skia",
657 "//sky/engine/platform/heap",
658 "//sky/engine/wtf", 660 "//sky/engine/wtf",
659 "//third_party/harfbuzz-ng", 661 "//third_party/harfbuzz-ng",
660 "//third_party/iccjpeg", 662 "//third_party/iccjpeg",
661 "//third_party/icu", 663 "//third_party/icu",
662 "//third_party/libpng", 664 "//third_party/libpng",
663 "//third_party/ots", 665 "//third_party/ots",
664 "//third_party/qcms", 666 "//third_party/qcms",
665 "//third_party:jpeg", 667 "//third_party:jpeg",
666 "//mojo/common",
667 "//mojo/environment:chromium",
668 "//mojo/public/c/system:for_shared_library",
669 "//mojo/public/cpp/bindings",
670 "//mojo/public/cpp/utility",
671 "//mojo/services/public/interfaces/network",
672 "//sky/engine/wtf",
673 "//sky/engine/platform/heap",
674 "//url", 668 "//url",
675 "//v8", 669 "//v8",
676 ] 670 ]
677 671
678 forward_dependent_configs_from = [ 672 forward_dependent_configs_from = [
679 "//gpu/command_buffer/client:gles2_c_lib", 673 "//gpu/command_buffer/client:gles2_c_lib",
680 "//skia", 674 "//skia",
681 "//third_party:jpeg", 675 "//third_party:jpeg",
682 "//third_party/iccjpeg", 676 "//third_party/iccjpeg",
683 "//third_party/libpng", 677 "//third_party/libpng",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 # See https://bugs.webkit.org/show_bug.cgi?id=62916. 789 # See https://bugs.webkit.org/show_bug.cgi?id=62916.
796 # TODO(GYP) 790 # TODO(GYP)
797 #'cflags': ['-marm'], 791 #'cflags': ['-marm'],
798 # 'conditions': [ 792 # 'conditions': [
799 # ['OS=="android"', { 793 # ['OS=="android"', {
800 # 'cflags!': ['-mthumb'], 794 # 'cflags!': ['-mthumb'],
801 # }], 795 # }],
802 # ], 796 # ],
803 } 797 }
804 } 798 }
OLDNEW
« no previous file with comments | « sky/engine/platform/AsyncMethodRunner.h ('k') | sky/engine/platform/CalculationValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698