| OLD | NEW |
| (Empty) |
| 1 # Copyright 2014 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 { | |
| 6 'includes': [ | |
| 7 'custom/custom.gypi', | |
| 8 '../../modules/dart/generated.gypi', | |
| 9 'dart-native-extensions.gypi', | |
| 10 ], | |
| 11 'variables': { | |
| 12 'bindings_core_dart_dir': '.', | |
| 13 'bindings_core_dart_files': [ | |
| 14 '<@(bindings_core_dart_custom_files)', | |
| 15 'DartApplicationLoader.cpp', | |
| 16 'DartApplicationLoader.h', | |
| 17 'DartCallback.cpp', | |
| 18 'DartCallback.h', | |
| 19 'DartBindingsCommonIncludes.h', | |
| 20 'DartController.cpp', | |
| 21 'DartController.h', | |
| 22 'DartCustomElementBinding.cpp', | |
| 23 'DartCustomElementBinding.h', | |
| 24 'DartCustomElementConstructorBuilder.cpp', | |
| 25 'DartCustomElementConstructorBuilder.h', | |
| 26 'DartCustomElementLifecycleCallbacks.cpp', | |
| 27 'DartCustomElementLifecycleCallbacks.h', | |
| 28 'DartCustomElementWrapper.cpp', | |
| 29 'DartCustomElementWrapper.h', | |
| 30 'DartScriptDebugServer.cpp', | |
| 31 'DartScriptDebugServer.h', | |
| 32 'DartDOMData.cpp', | |
| 33 'DartDOMData.h', | |
| 34 'DartDOMWrapper.cpp', | |
| 35 'DartDOMWrapper.h', | |
| 36 'DartEventListener.cpp', | |
| 37 'DartEventListener.h', | |
| 38 'DartExceptionState.h', | |
| 39 'DartExceptionState.cpp', | |
| 40 'DartGCController.cpp', | |
| 41 'DartGCController.h', | |
| 42 'DartHandleProxy.cpp', | |
| 43 'DartHandleProxy.h', | |
| 44 'DartInjectedScriptHostHelper.cpp', | |
| 45 'DartInjectedScriptHostHelper.h', | |
| 46 'DartInjectedScript.cpp', | |
| 47 'DartInjectedScript.h', | |
| 48 'DartInjectedScriptManager.cpp', | |
| 49 'DartInjectedScriptManager.h', | |
| 50 'DartInspectorTimeline.h', | |
| 51 'DartInspectorConsoleMessage.h', | |
| 52 'DartInspectorConsoleMessage.cpp', | |
| 53 'DartInspectorDebuggerAgent.h', | |
| 54 'DartInspectorDebuggerAgent.cpp', | |
| 55 'DartInspectorRuntimeAgent.h', | |
| 56 'DartInspectorRuntimeAgent.cpp', | |
| 57 'DartIsolateDestructionObserver.cpp', | |
| 58 'DartIsolateDestructionObserver.h', | |
| 59 'DartJsInterop.h', | |
| 60 'DartJsInterop.cpp', | |
| 61 'DartJsInteropData.h', | |
| 62 'DartJsInteropData.cpp', | |
| 63 'DartMutationCallback.cpp', | |
| 64 'DartMutationCallback.h', | |
| 65 'DartNativeUtilities.cpp', | |
| 66 'DartNativeUtilities.h', | |
| 67 'DartPageDebuggerAgent.cpp', | |
| 68 'DartPageDebuggerAgent.h', | |
| 69 'DartScheduledAction.cpp', | |
| 70 'DartScheduledAction.h', | |
| 71 'DartScriptDebugListener.h', | |
| 72 'DartScriptPromise.cpp', | |
| 73 'DartScriptPromise.h', | |
| 74 'DartScriptPromiseResolver.cpp', | |
| 75 'DartScriptPromiseResolver.h', | |
| 76 'DartScriptState.cpp', | |
| 77 'DartScriptState.h', | |
| 78 'DartScriptValue.cpp', | |
| 79 'DartScriptValue.h', | |
| 80 'DartPersistentValue.cpp', | |
| 81 'DartPersistentValue.h', | |
| 82 'DartService.cpp', | |
| 83 'DartService.h', | |
| 84 'DartStringCache.cpp', | |
| 85 'DartStringCache.h', | |
| 86 'DartUtilities.cpp', | |
| 87 'DartUtilities.h', | |
| 88 'ThreadSafeDartIsolateWrapper.cpp', | |
| 89 'ThreadSafeDartIsolateWrapper.h', | |
| 90 'V8Converter.cpp', | |
| 91 'V8Converter.h', | |
| 92 # FIXMEDART: These don't really belong here. But where? | |
| 93 # FIXMEDART: Add these back when generated as well as the | |
| 94 # blink_DartResolver.cpp. | |
| 95 'DartSnapshot.bytes', | |
| 96 ], | |
| 97 'conditions': [ | |
| 98 ['enable_dart_native_extensions==1', { | |
| 99 'bindings_core_dart_files': [ | |
| 100 'shared_lib/DartNativeExtensions.cpp', | |
| 101 'shared_lib/DartNativeExtensions.h', | |
| 102 'shared_lib/DartNativeExtensionsPosix.cpp', | |
| 103 'shared_lib/DartNativeExtensionsWin.cpp', | |
| 104 ], | |
| 105 }], | |
| 106 ], | |
| 107 # FIXMEDART: Add unittests! | |
| 108 'bindings_core_dart_unittest_files': [ | |
| 109 ], | |
| 110 }, | |
| 111 } | |
| OLD | NEW |