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

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 Created 6 years, 1 month 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 | « gin/v8.isolate ('k') | net/net.isolate » ('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 '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 'copies': [
1666 {
1667 'destination': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1668 'files': [
1669 '<(PRODUCT_DIR)/natives_blob.bin',
1670 '<(PRODUCT_DIR)/snapshot_blob.bin',
1671 ],
1672 },
1673 ],
1674 }],
1675 ],
1654 }, 1676 },
1655 'includes': [ '../build/apk_test.gypi' ], 1677 'includes': [ '../build/apk_test.gypi' ],
1656 }, 1678 },
1657 ], 1679 ],
1658 }], 1680 }],
1659 ['OS == "android" or OS == "linux"', { 1681 ['OS == "android" or OS == "linux"', {
1660 'targets': [ 1682 'targets': [
1661 { 1683 {
1662 'target_name': 'disk_cache_memory_test', 1684 'target_name': 'disk_cache_memory_test',
1663 'type': 'executable', 1685 'type': 'executable',
(...skipping 19 matching lines...) Expand all
1683 '../build/isolate.gypi', 1705 '../build/isolate.gypi',
1684 ], 1706 ],
1685 'sources': [ 1707 'sources': [
1686 'net_unittests.isolate', 1708 'net_unittests.isolate',
1687 ], 1709 ],
1688 }, 1710 },
1689 ], 1711 ],
1690 }], 1712 }],
1691 ], 1713 ],
1692 } 1714 }
OLDNEW
« no previous file with comments | « gin/v8.isolate ('k') | net/net.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698