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

Side by Side Diff: net/net.gyp

Issue 594603003: Infrastructure for reading V8's initial snapshot from external files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Sync master Created 6 years, 2 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
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 8
9 'linux_link_kerberos%': 0, 9 'linux_link_kerberos%': 0,
10 'conditions': [ 10 'conditions': [
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
782 [ 'use_icu_alternatives_on_android == 1', { 782 [ 'use_icu_alternatives_on_android == 1', {
783 'dependencies!': [ 783 'dependencies!': [
784 '../base/base.gyp:base_i18n', 784 '../base/base.gyp:base_i18n',
785 ], 785 ],
786 'sources!': [ 786 'sources!': [
787 'base/filename_util_unittest.cc', 787 'base/filename_util_unittest.cc',
788 'base/net_util_icu_unittest.cc', 788 'base/net_util_icu_unittest.cc',
789 ], 789 ],
790 }, 790 },
791 ], 791 ],
792 ['v8_use_external_startup_data==1', {
793 'dependencies': [
794 '../gin/gin.gyp:gin',
795 ]
796 }],
792 ], 797 ],
793 'target_conditions': [ 798 'target_conditions': [
794 # These source files are excluded by default platform rules, but they 799 # These source files are excluded by default platform rules, but they
795 # are needed in specific cases on other platforms. Re-including them can 800 # are needed in specific cases on other platforms. Re-including them can
796 # only be done in target_conditions as it is evaluated after the 801 # only be done in target_conditions as it is evaluated after the
797 # platform rules. 802 # platform rules.
798 ['OS == "android"', { 803 ['OS == "android"', {
799 'sources/': [ 804 'sources/': [
800 ['include', '^base/address_tracker_linux_unittest\\.cc$'], 805 ['include', '^base/address_tracker_linux_unittest\\.cc$'],
801 ], 806 ],
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 { 1649 {
1645 'target_name': 'net_unittests_apk', 1650 'target_name': 'net_unittests_apk',
1646 'type': 'none', 1651 'type': 'none',
1647 'dependencies': [ 1652 'dependencies': [
1648 'net_java', 1653 'net_java',
1649 'net_javatests', 1654 'net_javatests',
1650 'net_unittests', 1655 'net_unittests',
1651 ], 1656 ],
1652 'variables': { 1657 'variables': {
1653 'test_suite_name': 'net_unittests', 1658 'test_suite_name': 'net_unittests',
1659 'conditions': [
1660 ['v8_use_external_startup_data==1', {
1661 'additional_input_paths': [
1662 '<(PRODUCT_DIR)/natives_blob.bin',
1663 '<(PRODUCT_DIR)/snapshot_blob.bin',
1664 ],
1665 }],
1666 ],
1654 }, 1667 },
1668 'copies': [
1669 {
1670 'destination': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1671 'conditions': [
1672 ['v8_use_external_startup_data==1', {
1673 'files': [
1674 '<(PRODUCT_DIR)/natives_blob.bin',
1675 '<(PRODUCT_DIR)/snapshot_blob.bin',
1676 ],
1677 }],
1678 ],
1679 },
1680 ],
1655 'includes': [ '../build/apk_test.gypi' ], 1681 'includes': [ '../build/apk_test.gypi' ],
1656 }, 1682 },
1657 ], 1683 ],
1658 }], 1684 }],
1659 ['OS == "android" or OS == "linux"', { 1685 ['OS == "android" or OS == "linux"', {
1660 'targets': [ 1686 'targets': [
1661 { 1687 {
1662 'target_name': 'disk_cache_memory_test', 1688 'target_name': 'disk_cache_memory_test',
1663 'type': 'executable', 1689 'type': 'executable',
1664 'dependencies': [ 1690 'dependencies': [
(...skipping 18 matching lines...) Expand all
1683 '../build/isolate.gypi', 1709 '../build/isolate.gypi',
1684 ], 1710 ],
1685 'sources': [ 1711 'sources': [
1686 'net_unittests.isolate', 1712 'net_unittests.isolate',
1687 ], 1713 ],
1688 }, 1714 },
1689 ], 1715 ],
1690 }], 1716 }],
1691 ], 1717 ],
1692 } 1718 }
OLDNEW
« no previous file with comments | « mojo/mojo_js_unittests.isolate ('k') | net/net.isolate » ('j') | tools/gypv8sh.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698