| 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("//build/split_static_library.gni") | 5 import("//build/split_static_library.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//third_party/WebKit/Source/bindings/bindings.gni") | 7 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/v8/v8.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 deps = [ | 69 deps = [ |
| 70 ":make_modules_generated", | 70 ":make_modules_generated", |
| 71 "//device/battery:mojo_bindings_blink", | 71 "//device/battery:mojo_bindings_blink", |
| 72 "//device/geolocation/public/interfaces:interfaces_blink", | 72 "//device/geolocation/public/interfaces:interfaces_blink", |
| 73 "//device/nfc:mojo_bindings_blink", | 73 "//device/nfc:mojo_bindings_blink", |
| 74 "//device/usb/public/interfaces:interfaces_blink", | 74 "//device/usb/public/interfaces:interfaces_blink", |
| 75 "//device/vibration:mojo_bindings_blink", | 75 "//device/vibration:mojo_bindings_blink", |
| 76 "//device/vr:mojo_bindings_blink", | 76 "//device/vr:mojo_bindings_blink", |
| 77 "//media/mojo/interfaces:image_capture_blink", | 77 "//media/mojo/interfaces:image_capture_blink", |
| 78 "//third_party/WebKit/Source/core", | 78 "//third_party/WebKit/Source/core", |
| 79 "//third_party/WebKit/public:mojo_bindings_blink", | |
| 80 "//third_party/icu", | 79 "//third_party/icu", |
| 81 "//third_party/sqlite", | 80 "//third_party/sqlite", |
| 82 "//third_party/zlib", | 81 "//third_party/zlib", |
| 83 ] | 82 ] |
| 84 | 83 |
| 85 if (is_win) { | 84 if (is_win) { |
| 86 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. | 85 cflags = [ "/wd4334" ] # Result of 32-bit shift implicitly converted to 64
bits. |
| 87 } | 86 } |
| 88 | 87 |
| 89 if (remove_webcore_debug_symbols) { | 88 if (remove_webcore_debug_symbols) { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 } | 129 } |
| 131 | 130 |
| 132 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d | 131 # GYP version: WebKit/Source/modules/modules_generated.gyp:make_modules_generate
d |
| 133 group("make_modules_generated") { | 132 group("make_modules_generated") { |
| 134 public_deps = [ | 133 public_deps = [ |
| 135 ":module_names", | 134 ":module_names", |
| 136 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", | 135 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", |
| 137 "//third_party/WebKit/Source/core:core_event_interfaces", | 136 "//third_party/WebKit/Source/core:core_event_interfaces", |
| 138 ] | 137 ] |
| 139 } | 138 } |
| OLD | NEW |