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

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

Issue 678683004: HTMLImportLoader should talk directly to mojo::NetworkService (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: address reviewer comments 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/core/html/imports/HTMLImportsController.cpp ('k') | sky/engine/platform/DEPS » ('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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 "exported/WebURLRequest.cpp", 237 "exported/WebURLRequest.cpp",
238 "exported/WebURLRequestPrivate.h", 238 "exported/WebURLRequestPrivate.h",
239 "exported/WebURLResponse.cpp", 239 "exported/WebURLResponse.cpp",
240 "exported/WebURLResponsePrivate.h", 240 "exported/WebURLResponsePrivate.h",
241 "exported/WrappedResourceRequest.h", 241 "exported/WrappedResourceRequest.h",
242 "exported/WrappedResourceResponse.h", 242 "exported/WrappedResourceResponse.h",
243 "exported/linux/WebFontInfo.cpp", 243 "exported/linux/WebFontInfo.cpp",
244 "exported/linux/WebFontRenderStyle.cpp", 244 "exported/linux/WebFontRenderStyle.cpp",
245 "fetcher/DataPipeDrainer.cpp", 245 "fetcher/DataPipeDrainer.cpp",
246 "fetcher/DataPipeDrainer.h", 246 "fetcher/DataPipeDrainer.h",
247 "fetcher/MojoFetcher.cpp",
248 "fetcher/MojoFetcher.h",
247 "fonts/AlternateFontFamily.h", 249 "fonts/AlternateFontFamily.h",
248 "fonts/Character.cpp", 250 "fonts/Character.cpp",
249 "fonts/Character.h", 251 "fonts/Character.h",
250 "fonts/CustomFontData.h", 252 "fonts/CustomFontData.h",
251 "fonts/FixedPitchFontType.h", 253 "fonts/FixedPitchFontType.h",
252 "fonts/Font.cpp", 254 "fonts/Font.cpp",
253 "fonts/Font.h", 255 "fonts/Font.h",
254 "fonts/FontBaseline.h", 256 "fonts/FontBaseline.h",
255 "fonts/FontCache.cpp", 257 "fonts/FontCache.cpp",
256 "fonts/FontCache.h", 258 "fonts/FontCache.h",
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
678 ":make_platform_generated", 680 ":make_platform_generated",
679 "//gpu/command_buffer/client:gles2_c_lib", 681 "//gpu/command_buffer/client:gles2_c_lib",
680 "//skia", 682 "//skia",
681 "//third_party:jpeg", 683 "//third_party:jpeg",
682 "//third_party/harfbuzz-ng", 684 "//third_party/harfbuzz-ng",
683 "//third_party/iccjpeg", 685 "//third_party/iccjpeg",
684 "//third_party/icu", 686 "//third_party/icu",
685 "//third_party/libpng", 687 "//third_party/libpng",
686 "//third_party/ots", 688 "//third_party/ots",
687 "//third_party/qcms", 689 "//third_party/qcms",
688 "//mojo/application", 690 "//mojo/common",
691 "//mojo/environment:chromium",
692 "//mojo/public/c/system:for_shared_library",
689 "//mojo/public/cpp/bindings", 693 "//mojo/public/cpp/bindings",
690 "//mojo/public/cpp/utility", 694 "//mojo/public/cpp/utility",
691 "//mojo/public/c/system:for_shared_library", 695 "//mojo/services/public/interfaces/network",
692 "//sky/engine/wtf", 696 "//sky/engine/wtf",
693 "//sky/engine/platform/heap", 697 "//sky/engine/platform/heap",
694 "//url", 698 "//url",
695 "//v8", 699 "//v8",
696 ] 700 ]
697 701
698 forward_dependent_configs_from = [ 702 forward_dependent_configs_from = [
699 "//gpu/command_buffer/client:gles2_c_lib", 703 "//gpu/command_buffer/client:gles2_c_lib",
700 "//skia", 704 "//skia",
701 "//third_party:jpeg", 705 "//third_party:jpeg",
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 #'cflags': ['-marm'], 899 #'cflags': ['-marm'],
896 # 'conditions': [ 900 # 'conditions': [
897 # ['OS=="android"', { 901 # ['OS=="android"', {
898 # 'cflags!': ['-mthumb'], 902 # 'cflags!': ['-mthumb'],
899 # }], 903 # }],
900 # ], 904 # ],
901 905
902 deps = [ ":sky_common" ] 906 deps = [ ":sky_common" ]
903 } 907 }
904 } 908 }
OLDNEW
« no previous file with comments | « sky/engine/core/html/imports/HTMLImportsController.cpp ('k') | sky/engine/platform/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698