| OLD | NEW |
| 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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 "exported/WebURLError.cpp", | 235 "exported/WebURLError.cpp", |
| 236 "exported/WebURLLoadTiming.cpp", | 236 "exported/WebURLLoadTiming.cpp", |
| 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/DrainDataPipeJob.cpp", |
| 246 "fetcher/DrainDataPipeJob.h", |
| 245 "fonts/AlternateFontFamily.h", | 247 "fonts/AlternateFontFamily.h", |
| 246 "fonts/Character.cpp", | 248 "fonts/Character.cpp", |
| 247 "fonts/Character.h", | 249 "fonts/Character.h", |
| 248 "fonts/CustomFontData.h", | 250 "fonts/CustomFontData.h", |
| 249 "fonts/FixedPitchFontType.h", | 251 "fonts/FixedPitchFontType.h", |
| 250 "fonts/Font.cpp", | 252 "fonts/Font.cpp", |
| 251 "fonts/Font.h", | 253 "fonts/Font.h", |
| 252 "fonts/FontBaseline.h", | 254 "fonts/FontBaseline.h", |
| 253 "fonts/FontCache.cpp", | 255 "fonts/FontCache.cpp", |
| 254 "fonts/FontCache.h", | 256 "fonts/FontCache.h", |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 ":make_platform_generated", | 678 ":make_platform_generated", |
| 677 "//gpu/command_buffer/client:gles2_c_lib", | 679 "//gpu/command_buffer/client:gles2_c_lib", |
| 678 "//skia", | 680 "//skia", |
| 679 "//third_party:jpeg", | 681 "//third_party:jpeg", |
| 680 "//third_party/harfbuzz-ng", | 682 "//third_party/harfbuzz-ng", |
| 681 "//third_party/iccjpeg", | 683 "//third_party/iccjpeg", |
| 682 "//third_party/icu", | 684 "//third_party/icu", |
| 683 "//third_party/libpng", | 685 "//third_party/libpng", |
| 684 "//third_party/ots", | 686 "//third_party/ots", |
| 685 "//third_party/qcms", | 687 "//third_party/qcms", |
| 688 "//mojo/application", |
| 689 "//mojo/public/cpp/bindings", |
| 690 "//mojo/public/cpp/utility", |
| 691 "//mojo/public/c/system:for_shared_library", |
| 686 "//sky/engine/wtf", | 692 "//sky/engine/wtf", |
| 687 "//sky/engine/platform/heap", | 693 "//sky/engine/platform/heap", |
| 688 "//url", | 694 "//url", |
| 689 "//v8", | 695 "//v8", |
| 690 ] | 696 ] |
| 691 | 697 |
| 692 forward_dependent_configs_from = [ | 698 forward_dependent_configs_from = [ |
| 693 "//gpu/command_buffer/client:gles2_c_lib", | 699 "//gpu/command_buffer/client:gles2_c_lib", |
| 694 "//skia", | 700 "//skia", |
| 695 "//third_party:jpeg", | 701 "//third_party:jpeg", |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 #'cflags': ['-marm'], | 895 #'cflags': ['-marm'], |
| 890 # 'conditions': [ | 896 # 'conditions': [ |
| 891 # ['OS=="android"', { | 897 # ['OS=="android"', { |
| 892 # 'cflags!': ['-mthumb'], | 898 # 'cflags!': ['-mthumb'], |
| 893 # }], | 899 # }], |
| 894 # ], | 900 # ], |
| 895 | 901 |
| 896 deps = [ ":sky_common" ] | 902 deps = [ ":sky_common" ] |
| 897 } | 903 } |
| 898 } | 904 } |
| OLD | NEW |