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

Side by Side Diff: third_party/WebKit/Source/web/BUILD.gn

Issue 1961473003: [Mac/GN] Set up the component build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Comment and rebase Created 4 years, 7 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 | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/decklink/BUILD.gn » ('j') | no next file with comments »
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("//testing/test.gni") 6 import("//testing/test.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/config.gni") 8 import("//third_party/WebKit/Source/config.gni")
9 import("//third_party/WebKit/Source/core/core.gni") 9 import("//third_party/WebKit/Source/core/core.gni")
10 import("//third_party/WebKit/Source/modules/modules.gni") 10 import("//third_party/WebKit/Source/modules/modules.gni")
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 if (!use_default_render_theme) { 44 if (!use_default_render_theme) {
45 sources -= [ "default/WebRenderTheme.cpp" ] 45 sources -= [ "default/WebRenderTheme.cpp" ]
46 } 46 }
47 47
48 if (is_android) { 48 if (is_android) {
49 set_sources_assignment_filter([]) 49 set_sources_assignment_filter([])
50 sources += [ "linux/WebFontRendering.cpp" ] 50 sources += [ "linux/WebFontRendering.cpp" ]
51 set_sources_assignment_filter(sources_assignment_filter) 51 set_sources_assignment_filter(sources_assignment_filter)
52 } 52 }
53 53
54 if (is_mac) {
55 libs = [
56 "AppKit.framework",
57 "Foundation.framework",
58 ]
59 }
60
54 if (remove_webcore_debug_symbols) { 61 if (remove_webcore_debug_symbols) {
55 configs -= [ "//build/config/compiler:default_symbols" ] 62 configs -= [ "//build/config/compiler:default_symbols" ]
56 configs += [ "//build/config/compiler:no_symbols" ] 63 configs += [ "//build/config/compiler:no_symbols" ]
57 } 64 }
58 } 65 }
59 66
60 # GYP version: WebKit/Source/web/web.gyp:blink_web_test_support 67 # GYP version: WebKit/Source/web/web.gyp:blink_web_test_support
61 source_set("test_support") { 68 source_set("test_support") {
62 deps = [ 69 deps = [
63 "//skia", 70 "//skia",
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 138
132 if (is_android) { 139 if (is_android) {
133 deps += [ 140 deps += [
134 "//base:base_java", 141 "//base:base_java",
135 "//content/public/android:content_java", 142 "//content/public/android:content_java",
136 "//content/shell/android:content_shell_assets", 143 "//content/shell/android:content_shell_assets",
137 "//net/android:net_java", 144 "//net/android:net_java",
138 ] 145 ]
139 } 146 }
140 } 147 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/BUILD.gn ('k') | third_party/decklink/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698