| 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 } | 271 } |
| 272 | 272 |
| 273 if (!is_android) { | 273 if (!is_android) { |
| 274 sources -= [ | 274 sources -= [ |
| 275 "layout/LayoutThemeAndroid.cpp", | 275 "layout/LayoutThemeAndroid.cpp", |
| 276 "layout/LayoutThemeAndroid.h", | 276 "layout/LayoutThemeAndroid.h", |
| 277 ] | 277 ] |
| 278 } | 278 } |
| 279 | 279 |
| 280 if (is_mac) { | 280 if (is_mac) { |
| 281 libs += [ "Carbon.framework" ] | 281 libs += [ |
| 282 "AppKit.framework", |
| 283 "Carbon.framework", |
| 284 ] |
| 282 } else { # !is_mac | 285 } else { # !is_mac |
| 283 sources -= [ "editing/commands/SmartReplaceCF.cpp" ] | 286 sources -= [ "editing/commands/SmartReplaceCF.cpp" ] |
| 284 } | 287 } |
| 285 } | 288 } |
| 286 | 289 |
| 287 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_rendering | 290 # GYP version: //third_party/WebKit/Source/core/core.gyp:webcore_rendering |
| 288 source_set("rendering") { | 291 source_set("rendering") { |
| 289 # The files that go here are currently in "remaining". | 292 # The files that go here are currently in "remaining". |
| 290 } | 293 } |
| 291 | 294 |
| (...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1029 "$blink_core_output_dir/{{source_name_part}}.h", | 1032 "$blink_core_output_dir/{{source_name_part}}.h", |
| 1030 ] | 1033 ] |
| 1031 args = [ | 1034 args = [ |
| 1032 "{{source}}", | 1035 "{{source}}", |
| 1033 rel_blink_core_gen_dir, | 1036 rel_blink_core_gen_dir, |
| 1034 bison_exe, | 1037 bison_exe, |
| 1035 ] | 1038 ] |
| 1036 | 1039 |
| 1037 deps = make_core_generated_deps | 1040 deps = make_core_generated_deps |
| 1038 } | 1041 } |
| OLD | NEW |