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