| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 29 matching lines...) Expand all Loading... |
| 40 | 40 |
| 41 if (is_mac) { | 41 if (is_mac) { |
| 42 libs = [ | 42 libs = [ |
| 43 "AppKit.framework", | 43 "AppKit.framework", |
| 44 "Foundation.framework", | 44 "Foundation.framework", |
| 45 ] | 45 ] |
| 46 } | 46 } |
| 47 | 47 |
| 48 if (remove_webcore_debug_symbols) { | 48 if (remove_webcore_debug_symbols) { |
| 49 configs -= [ "//build/config/compiler:default_symbols" ] | 49 configs -= [ "//build/config/compiler:default_symbols" ] |
| 50 configs += [ "//build/config/compiler:no_symbols" ] | 50 configs += remove_webcore_symbols_config |
| 51 } | 51 } |
| 52 } | 52 } |
| OLD | NEW |