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

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

Issue 701043002: Get more of the mac GN build working. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add comments Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/platform/BUILD.gn » ('j') | Source/platform/BUILD.gn » ('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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//third_party/WebKit/Source/bindings/bindings.gni") 6 import("//third_party/WebKit/Source/bindings/bindings.gni")
7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 7 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
8 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 8 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 9 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni") 10 import("//third_party/WebKit/Source/bindings/scripts/scripts.gni")
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 cflags += [ "-Wno-uninitialized" ] 253 cflags += [ "-Wno-uninitialized" ]
254 } else { # !is_android 254 } else { # !is_android
255 sources -= [ 255 sources -= [
256 "rendering/RenderThemeChromiumAndroid.cpp", 256 "rendering/RenderThemeChromiumAndroid.cpp",
257 "rendering/RenderThemeChromiumAndroid.h", 257 "rendering/RenderThemeChromiumAndroid.h",
258 ] 258 ]
259 } 259 }
260 260
261 if (is_mac) { 261 if (is_mac) {
262 sources -= [ 262 sources -= [
263 "rendering/RenderThemeChromiumDefault.cpp",
264 "rendering/RenderThemeChromiumDefault.h",
Dirk Pranke 2014/11/12 02:57:24 Brett: These files, despite the name, are actual A
263 "rendering/RenderThemeChromiumFontProvider.cpp", 265 "rendering/RenderThemeChromiumFontProvider.cpp",
264 "rendering/RenderThemeChromiumFontProvider.h", 266 "rendering/RenderThemeChromiumFontProvider.h",
265 "rendering/RenderThemeChromiumSkia.cpp", 267 "rendering/RenderThemeChromiumSkia.cpp",
266 "rendering/RenderThemeChromiumSkia.h", 268 "rendering/RenderThemeChromiumSkia.h",
267 ] 269 ]
268 libs += [ "Carbon.framework" ] 270 libs += [ "Carbon.framework" ]
269 # Some Mac-specific parts of WebKit won't compile without having this 271 # Some Mac-specific parts of WebKit won't compile without having this
270 # prefix header injected. 272 # prefix header injected.
271 cflags = [ 273 cflags = [
272 "-include", 274 "-include",
(...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after
1068 "$blink_core_output_dir/{{source_name_part}}.h", 1070 "$blink_core_output_dir/{{source_name_part}}.h",
1069 ] 1071 ]
1070 args = [ 1072 args = [
1071 "{{source}}", 1073 "{{source}}",
1072 rel_blink_core_gen_dir, 1074 rel_blink_core_gen_dir,
1073 bison_exe, 1075 bison_exe,
1074 ] 1076 ]
1075 1077
1076 deps = make_core_generated_deps 1078 deps = make_core_generated_deps
1077 } 1079 }
OLDNEW
« no previous file with comments | « no previous file | Source/platform/BUILD.gn » ('j') | Source/platform/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698