| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 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("//third_party/WebKit/Source/core/core.gni") | 5 import("//third_party/WebKit/Source/core/core.gni") |
| 6 | 6 |
| 7 blink_core_sources("clipboard") { | 7 blink_core_sources("clipboard") { |
| 8 sources = [ | 8 sources = [ |
| 9 "Clipboard.cpp", |
| 10 "Clipboard.h", |
| 11 "ClipboardAsync.cpp", |
| 12 "ClipboardAsync.h", |
| 9 "DataObject.cpp", | 13 "DataObject.cpp", |
| 10 "DataObject.h", | 14 "DataObject.h", |
| 11 "DataObjectItem.cpp", | 15 "DataObjectItem.cpp", |
| 12 "DataObjectItem.h", | 16 "DataObjectItem.h", |
| 13 "DataTransfer.cpp", | 17 "DataTransfer.cpp", |
| 14 "DataTransfer.h", | 18 "DataTransfer.h", |
| 15 "DataTransferItem.cpp", | 19 "DataTransferItem.cpp", |
| 16 "DataTransferItem.h", | 20 "DataTransferItem.h", |
| 17 "DataTransferItemList.cpp", | 21 "DataTransferItemList.cpp", |
| 18 "DataTransferItemList.h", | 22 "DataTransferItemList.h", |
| 19 "DraggedIsolatedFileSystem.cpp", | 23 "DraggedIsolatedFileSystem.cpp", |
| 20 "DraggedIsolatedFileSystem.h", | 24 "DraggedIsolatedFileSystem.h", |
| 21 "Pasteboard.cpp", | 25 "Pasteboard.cpp", |
| 22 "Pasteboard.h", | 26 "Pasteboard.h", |
| 23 ] | 27 ] |
| 24 | 28 |
| 25 configs += [ | 29 configs += [ |
| 26 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 30 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 27 "//build/config/compiler:no_size_t_to_int_warning", | 31 "//build/config/compiler:no_size_t_to_int_warning", |
| 28 ] | 32 ] |
| 29 } | 33 } |
| OLD | NEW |