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

Side by Side Diff: webkit/webkit.gyp

Issue 202012: linux: build a fake libxul and libxpcom (Closed)
Patch Set: works Created 11 years, 3 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
« chrome/chrome.gyp ('K') | « webkit/tools/libxul_hack/libxul_hack.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'variables': { 6 'variables': {
7 'feature_defines': [ 7 'feature_defines': [
8 'ENABLE_CHANNEL_MESSAGING=1', 8 'ENABLE_CHANNEL_MESSAGING=1',
9 'ENABLE_DATABASE=1', 9 'ENABLE_DATABASE=1',
10 'ENABLE_DATAGRID=0', 10 'ENABLE_DATAGRID=0',
(...skipping 1553 matching lines...) Expand 10 before | Expand all | Expand 10 after
1564 'glue/devtools/js/tests.js', 1564 'glue/devtools/js/tests.js',
1565 1565
1566 '<@(webinspector_files)', 1566 '<@(webinspector_files)',
1567 1567
1568 '../v8/tools/codemap.js', 1568 '../v8/tools/codemap.js',
1569 '../v8/tools/consarray.js', 1569 '../v8/tools/consarray.js',
1570 '../v8/tools/csvparser.js', 1570 '../v8/tools/csvparser.js',
1571 '../v8/tools/logreader.js', 1571 '../v8/tools/logreader.js',
1572 '../v8/tools/profile.js', 1572 '../v8/tools/profile.js',
1573 '../v8/tools/profile_view.js', 1573 '../v8/tools/profile_view.js',
1574 '../v8/tools/splaytree.js', 1574 '../v8/tools/splaytree.js',
1575 ], 1575 ],
1576 }, 1576 },
1577 { 1577 {
1578 'destination': '<(PRODUCT_DIR)/resources/inspector/Images', 1578 'destination': '<(PRODUCT_DIR)/resources/inspector/Images',
1579 'files': [ 1579 'files': [
1580 1580
1581 '<@(webinspector_image_files)', 1581 '<@(webinspector_image_files)',
1582 1582
1583 ], 1583 ],
1584 }, 1584 },
1585 ], 1585 ],
1586 }, 1586 },
1587 ], 1587 ], # targets
1588 'conditions': [
1589 ['OS=="linux"', {
1590 # See the comments in libxul_hack.cc for a description of why these
1591 # libraries exist.
1592 'targets': [
1593 {
1594 # We want to build exactly "libxul.so".
1595 'target_name': 'xul',
1596 'product_dir': '<(PRODUCT_DIR)',
1597 'type': 'loadable_module',
1598 'sources': [
1599 'tools/libxul_hack/libxul_hack.cc'
1600 ],
1601 },
1602 {
1603 # We want to build exactly "libxpcom.so".
1604 'target_name': 'xpcom',
1605 'product_dir': '<(PRODUCT_DIR)',
1606 'type': 'loadable_module',
1607 'sources': [
1608 'tools/libxul_hack/libxul_hack.cc'
1609 ],
1610 },
1611 ], # targets
1612 }],
1613 ], # conditions
1588 } 1614 }
OLDNEW
« chrome/chrome.gyp ('K') | « webkit/tools/libxul_hack/libxul_hack.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698