| 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/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.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/core/v8/generated.gni") | 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") |
| 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") | 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 ] | 281 ] |
| 282 libs += [ "Carbon.framework" ] | 282 libs += [ "Carbon.framework" ] |
| 283 # Some Mac-specific parts of WebKit won't compile without having this | 283 # Some Mac-specific parts of WebKit won't compile without having this |
| 284 # prefix header injected. | 284 # prefix header injected. |
| 285 cflags = [ | 285 cflags = [ |
| 286 "-include", | 286 "-include", |
| 287 rebase_path("../build/mac/Prefix.h", root_build_dir), | 287 rebase_path("../build/mac/Prefix.h", root_build_dir), |
| 288 ] | 288 ] |
| 289 } else { # !is_mac | 289 } else { # !is_mac |
| 290 sources -= [ | 290 sources -= [ |
| 291 "editing/SmartReplaceCF.cpp", | 291 "editing/commands/SmartReplaceCF.cpp", |
| 292 ] | 292 ] |
| 293 } | 293 } |
| 294 } | 294 } |
| 295 | 295 |
| 296 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_rendering | 296 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_rendering |
| 297 source_set("rendering") { | 297 source_set("rendering") { |
| 298 # The files that go here are currently in "remaining". | 298 # The files that go here are currently in "remaining". |
| 299 } | 299 } |
| 300 | 300 |
| 301 # GYP version: WebKit/Source/core/core.gyp:webcore_testing | 301 # GYP version: WebKit/Source/core/core.gyp:webcore_testing |
| (...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1040 "$blink_core_output_dir/{{source_name_part}}.h", | 1040 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1041 ] | 1041 ] |
| 1042 args = [ | 1042 args = [ |
| 1043 "{{source}}", | 1043 "{{source}}", |
| 1044 rel_blink_core_gen_dir, | 1044 rel_blink_core_gen_dir, |
| 1045 bison_exe, | 1045 bison_exe, |
| 1046 ] | 1046 ] |
| 1047 | 1047 |
| 1048 deps = make_core_generated_deps | 1048 deps = make_core_generated_deps |
| 1049 } | 1049 } |
| OLD | NEW |