| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 6 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 7 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
| 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 8 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 9 import("//third_party/WebKit/Source/modules/modules.gni") | 9 import("//third_party/WebKit/Source/modules/modules.gni") |
| 10 | 10 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] | 45 defines = [ "BLINK_MODULES_IMPLEMENTATION=1" ] |
| 46 | 46 |
| 47 deps = [ | 47 deps = [ |
| 48 ":make_modules_generated", | 48 ":make_modules_generated", |
| 49 "//device/battery:mojo_bindings_blink", | 49 "//device/battery:mojo_bindings_blink", |
| 50 "//device/nfc:mojo_bindings_blink", | 50 "//device/nfc:mojo_bindings_blink", |
| 51 "//device/usb/public/interfaces:interfaces_blink", | 51 "//device/usb/public/interfaces:interfaces_blink", |
| 52 "//device/vibration:mojo_bindings_blink", | 52 "//device/vibration:mojo_bindings_blink", |
| 53 "//device/vr:mojo_bindings_blink", | 53 "//device/vr:mojo_bindings_blink", |
| 54 "//media/mojo/interfaces:image_capture_blink", | 54 "//media/mojo/interfaces:image_capture_blink", |
| 55 "//mojo/public/c/system:for_component", | |
| 56 "//third_party/WebKit/Source/core", | 55 "//third_party/WebKit/Source/core", |
| 57 "//third_party/WebKit/public:mojo_bindings", | 56 "//third_party/WebKit/public:mojo_bindings", |
| 58 "//third_party/WebKit/public:mojo_bindings_blink", | 57 "//third_party/WebKit/public:mojo_bindings_blink", |
| 59 "//third_party/icu", | 58 "//third_party/icu", |
| 60 "//third_party/sqlite", | 59 "//third_party/sqlite", |
| 61 "//third_party/zlib", | 60 "//third_party/zlib", |
| 62 ] | 61 ] |
| 63 | 62 |
| 64 if (is_win) { | 63 if (is_win) { |
| 65 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. | 64 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 } | 108 } |
| 110 | 109 |
| 111 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 110 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 112 group("make_modules_generated") { | 111 group("make_modules_generated") { |
| 113 public_deps = [ | 112 public_deps = [ |
| 114 ":module_names", | 113 ":module_names", |
| 115 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 114 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 116 "//third_party/WebKit/Source/core:core_event_interfaces", | 115 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 117 ] | 116 ] |
| 118 } | 117 } |
| OLD | NEW |