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

Side by Side Diff: third_party/mozilla/mozilla.gyp

Issue 1568073002: Reduce string copies in GURL creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/mozilla/BUILD.gn ('k') | url/gurl.h » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'mozilla', 8 'target_name': 'mozilla',
9 'type': '<(component)', 9 'type': '<(component)',
10 'sources': [ 10 'sources': [
(...skipping 13 matching lines...) Expand all
24 ], 24 ],
25 'defines': [ 25 'defines': [
26 'MOZILLA_IMPLEMENTATION', 26 'MOZILLA_IMPLEMENTATION',
27 ], 27 ],
28 'link_settings': { 28 'link_settings': {
29 'libraries': [ 29 'libraries': [
30 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework', 30 '$(SDKROOT)/System/Library/Frameworks/AppKit.framework',
31 ], 31 ],
32 }, 32 },
33 'dependencies': [ 33 'dependencies': [
34 '../../base/base.gyp:base',
34 '../../url/url.gyp:url_lib', 35 '../../url/url.gyp:url_lib',
35 ], 36 ],
36 'conditions': [ 37 'conditions': [
37 ['component=="shared_library"', 38 ['component=="shared_library"',
38 { 39 {
39 # Needed to link to Obj-C static libraries. 40 # Needed to link to Obj-C static libraries.
40 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']}, 41 'xcode_settings': {'OTHER_LDFLAGS': ['-Wl,-ObjC']},
41 } 42 }
42 ], 43 ],
43 ], 44 ],
44 }, 45 },
45 ], 46 ],
46 } 47 }
OLDNEW
« no previous file with comments | « third_party/mozilla/BUILD.gn ('k') | url/gurl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698