| OLD | NEW |
| (Empty) |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 import("//third_party/WebKit/Source/core/core.gni") | |
| 6 | |
| 7 blink_core_sources("fileapi") { | |
| 8 sources = [ | |
| 9 "Blob.cpp", | |
| 10 "Blob.h", | |
| 11 "BlobCallback.h", | |
| 12 "File.cpp", | |
| 13 "File.h", | |
| 14 "FileError.cpp", | |
| 15 "FileError.h", | |
| 16 "FileList.cpp", | |
| 17 "FileList.h", | |
| 18 "FileReader.cpp", | |
| 19 "FileReader.h", | |
| 20 "FileReaderLoader.cpp", | |
| 21 "FileReaderLoader.h", | |
| 22 "FileReaderLoaderClient.h", | |
| 23 "FileReaderSync.cpp", | |
| 24 "FileReaderSync.h", | |
| 25 "URLFileAPI.cpp", | |
| 26 "URLFileAPI.h", | |
| 27 ] | |
| 28 | |
| 29 configs += [ | |
| 30 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
| 31 "//build/config/compiler:no_size_t_to_int_warning", | |
| 32 ] | |
| 33 } | |
| OLD | NEW |