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 "DataTransferAccessPolicy.h", | 19 "DataTransferAccessPolicy.h", |
16 "DataTransferItem.cpp", | 20 "DataTransferItem.cpp", |
17 "DataTransferItem.h", | 21 "DataTransferItem.h", |
18 "DataTransferItemList.cpp", | 22 "DataTransferItemList.cpp", |
19 "DataTransferItemList.h", | 23 "DataTransferItemList.h", |
20 "DraggedIsolatedFileSystem.cpp", | 24 "DraggedIsolatedFileSystem.cpp", |
21 "DraggedIsolatedFileSystem.h", | 25 "DraggedIsolatedFileSystem.h", |
22 "Pasteboard.cpp", | 26 "Pasteboard.cpp", |
23 "Pasteboard.h", | 27 "Pasteboard.h", |
24 ] | 28 ] |
25 | 29 |
26 configs += [ | 30 configs += [ |
27 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 31 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
28 "//build/config/compiler:no_size_t_to_int_warning", | 32 "//build/config/compiler:no_size_t_to_int_warning", |
29 ] | 33 ] |
30 } | 34 } |
OLD | NEW |