| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 } | 257 } |
| 258 | 258 |
| 259 if (!is_android) { | 259 if (!is_android) { |
| 260 sources -= [ | 260 sources -= [ |
| 261 "layout/LayoutThemeAndroid.cpp", | 261 "layout/LayoutThemeAndroid.cpp", |
| 262 "layout/LayoutThemeAndroid.h", | 262 "layout/LayoutThemeAndroid.h", |
| 263 ] | 263 ] |
| 264 } | 264 } |
| 265 | 265 |
| 266 if (is_mac) { | 266 if (is_mac) { |
| 267 libs += [ "Carbon.framework" ] | 267 libs += [ |
| 268 "AppKit.framework", |
| 269 "Carbon.framework", |
| 270 ] |
| 268 } else { # !is_mac | 271 } else { # !is_mac |
| 269 sources -= [ "editing/commands/SmartReplaceCF.cpp" ] | 272 sources -= [ "editing/commands/SmartReplaceCF.cpp" ] |
| 270 } | 273 } |
| 271 } | 274 } |
| 272 | 275 |
| 273 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_rendering | 276 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_rendering |
| 274 source_set("rendering") { | 277 source_set("rendering") { |
| 275 # The files that go here are currently in "remaining". | 278 # The files that go here are currently in "remaining". |
| 276 } | 279 } |
| 277 | 280 |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1017 "$blink_core_output_dir/{{source_name_part}}.h", | 1020 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1018 ] | 1021 ] |
| 1019 args = [ | 1022 args = [ |
| 1020 "{{source}}", | 1023 "{{source}}", |
| 1021 rel_blink_core_gen_dir, | 1024 rel_blink_core_gen_dir, |
| 1022 bison_exe, | 1025 bison_exe, |
| 1023 ] | 1026 ] |
| 1024 | 1027 |
| 1025 deps = make_core_generated_deps | 1028 deps = make_core_generated_deps |
| 1026 } | 1029 } |
| OLD | NEW |