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/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 Loading... |
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 Loading... |
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 } |
OLD | NEW |