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/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
6 | 6 |
7 blink_modules_sources("presentation") { | 7 blink_modules_sources("presentation") { |
8 sources = [ | 8 sources = [ |
| 9 "ExistingPresentationConnectionCallbacks.cpp", |
| 10 "ExistingPresentationConnectionCallbacks.h", |
9 "NavigatorPresentation.cpp", | 11 "NavigatorPresentation.cpp", |
10 "NavigatorPresentation.h", | 12 "NavigatorPresentation.h", |
11 "Presentation.cpp", | 13 "Presentation.cpp", |
12 "Presentation.h", | 14 "Presentation.h", |
13 "PresentationAvailability.cpp", | 15 "PresentationAvailability.cpp", |
14 "PresentationAvailability.h", | 16 "PresentationAvailability.h", |
15 "PresentationAvailabilityCallbacks.cpp", | 17 "PresentationAvailabilityCallbacks.cpp", |
16 "PresentationAvailabilityCallbacks.h", | 18 "PresentationAvailabilityCallbacks.h", |
17 "PresentationConnection.cpp", | 19 "PresentationConnection.cpp", |
18 "PresentationConnection.h", | 20 "PresentationConnection.h", |
19 "PresentationConnectionAvailableEvent.cpp", | 21 "PresentationConnectionAvailableEvent.cpp", |
20 "PresentationConnectionAvailableEvent.h", | 22 "PresentationConnectionAvailableEvent.h", |
21 "PresentationConnectionCallbacks.cpp", | 23 "PresentationConnectionCallbacks.cpp", |
22 "PresentationConnectionCallbacks.h", | 24 "PresentationConnectionCallbacks.h", |
23 "PresentationConnectionCloseEvent.cpp", | 25 "PresentationConnectionCloseEvent.cpp", |
24 "PresentationConnectionCloseEvent.h", | 26 "PresentationConnectionCloseEvent.h", |
25 "PresentationConnectionList.cpp", | 27 "PresentationConnectionList.cpp", |
26 "PresentationConnectionList.h", | 28 "PresentationConnectionList.h", |
27 "PresentationController.cpp", | 29 "PresentationController.cpp", |
28 "PresentationController.h", | 30 "PresentationController.h", |
29 "PresentationError.cpp", | 31 "PresentationError.cpp", |
30 "PresentationError.h", | 32 "PresentationError.h", |
31 "PresentationPromiseProperty.h", | 33 "PresentationPromiseProperty.h", |
32 "PresentationReceiver.cpp", | 34 "PresentationReceiver.cpp", |
33 "PresentationReceiver.h", | 35 "PresentationReceiver.h", |
34 "PresentationRequest.cpp", | 36 "PresentationRequest.cpp", |
35 "PresentationRequest.h", | 37 "PresentationRequest.h", |
36 ] | 38 ] |
37 } | 39 } |
OLD | NEW |