Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(706)

Side by Side Diff: Source/core/BUILD.gn

Issue 1294543005: Move execCommand related files in core/editing/ related files into core/editing/commands/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 2015-08-18T14:20:58 Rebase for merging code style fixes Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | Source/core/core.gyp » ('j') | Source/core/core.gypi » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/core/core.gyp » ('j') | Source/core/core.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698