diff options
author | Zeno Albisser <zeno.albisser@theqtcompany.com> | 2014-12-05 15:04:29 +0100 |
---|---|---|
committer | Andras Becsi <andras.becsi@theqtcompany.com> | 2014-12-09 10:49:28 +0100 |
commit | af6588f8d723931a298c995fa97259bb7f7deb55 (patch) | |
tree | 060ca707847ba1735f01af2372e0d5e494dc0366 /chromium/third_party/mozilla | |
parent | 2fff84d821cc7b1c785f6404e0f8091333283e74 (diff) | |
download | qtwebengine-chromium-af6588f8d723931a298c995fa97259bb7f7deb55.tar.gz |
BASELINE: Update chromium to 40.0.2214.28 and ninja to 1.5.3.
Change-Id: I759465284fd64d59ad120219cbe257f7402c4181
Reviewed-by: Andras Becsi <andras.becsi@theqtcompany.com>
Diffstat (limited to 'chromium/third_party/mozilla')
-rw-r--r-- | chromium/third_party/mozilla/BUILD.gn | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/chromium/third_party/mozilla/BUILD.gn b/chromium/third_party/mozilla/BUILD.gn new file mode 100644 index 00000000000..ca41a3d0d95 --- /dev/null +++ b/chromium/third_party/mozilla/BUILD.gn @@ -0,0 +1,34 @@ +# Copyright 2014 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +component("mozilla") { + sources = [ + "ComplexTextInputPanel.h", + "ComplexTextInputPanel.mm", + "MozillaExport.h", + "NSPasteboard+Utils.h", + "NSPasteboard+Utils.mm", + "NSScreen+Utils.h", + "NSScreen+Utils.m", + "NSString+Utils.h", + "NSString+Utils.mm", + "NSURL+Utils.h", + "NSURL+Utils.m", + "NSWorkspace+Utils.h", + "NSWorkspace+Utils.m", + ] + + defines = [ + "MOZILLA_IMPLEMENTATION", + ] + + deps = [ + "//url", + ] + + if (is_component_build && (is_mac || is_ios)) { + # Needed to link to Obj-C static libraries. + ldflags = [ "-Wl,-ObjC" ] + } +} |