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