| 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("clipboard") { | |
| 8 sources = [ | |
| 9 "DataObject.cpp", | |
| 10 "DataObject.h", | |
| 11 "DataObjectItem.cpp", | |
| 12 "DataObjectItem.h", | |
| 13 "DataTransfer.cpp", | |
| 14 "DataTransfer.h", | |
| 15 "DataTransferItem.cpp", | |
| 16 "DataTransferItem.h", | |
| 17 "DataTransferItemList.cpp", | |
| 18 "DataTransferItemList.h", | |
| 19 "DraggedIsolatedFileSystem.cpp", | |
| 20 "DraggedIsolatedFileSystem.h", | |
| 21 "Pasteboard.cpp", | |
| 22 "Pasteboard.h", | |
| 23 ] | |
| 24 | |
| 25 configs += [ | |
| 26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
| 27 "//build/config/compiler:no_size_t_to_int_warning", | |
| 28 ] | |
| 29 } | |
| OLD | NEW |