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

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: Address Ross' comments 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 1633 matching lines...) Expand 10 before | Expand all | Expand 10 after
1644 { 1644 {
1645 'target_name': 'net_unittests_apk', 1645 'target_name': 'net_unittests_apk',
1646 'type': 'none', 1646 'type': 'none',
1647 'dependencies': [ 1647 'dependencies': [
1648 'net_java', 1648 'net_java',
1649 'net_javatests', 1649 'net_javatests',
1650 'net_unittests', 1650 'net_unittests',
1651 ], 1651 ],
1652 'variables': { 1652 'variables': {
1653 'test_suite_name': 'net_unittests', 1653 'test_suite_name': 'net_unittests',
1654 'conditions': [
1655 ['v8_use_external_startup_data==1', {
1656 'additional_input_paths': [
1657 '<(PRODUCT_DIR)/natives_blob.bin',
1658 '<(PRODUCT_DIR)/snapshot_blob.bin',
1659 ],
1660 }],
1661 ],
1654 }, 1662 },
1663 'copies': [
1664 {
1665 'destination': '<(PRODUCT_DIR)/net_unittests_apk/assets',
1666 'conditions': [
1667 ['v8_use_external_startup_data==1', {
1668 'files': [
1669 '<(PRODUCT_DIR)/natives_blob.bin',
1670 '<(PRODUCT_DIR)/snapshot_blob.bin',
1671 ],
1672 }],
1673 ],
1674 },
1675 ],
1655 'includes': [ '../build/apk_test.gypi' ], 1676 'includes': [ '../build/apk_test.gypi' ],
1656 }, 1677 },
1657 ], 1678 ],
1658 }], 1679 }],
1659 ['OS == "android" or OS == "linux"', { 1680 ['OS == "android" or OS == "linux"', {
1660 'targets': [ 1681 'targets': [
1661 { 1682 {
1662 'target_name': 'disk_cache_memory_test', 1683 'target_name': 'disk_cache_memory_test',
1663 'type': 'executable', 1684 'type': 'executable',
1664 'dependencies': [ 1685 'dependencies': [
(...skipping 18 matching lines...) Expand all
1683 '../build/isolate.gypi', 1704 '../build/isolate.gypi',
1684 ], 1705 ],
1685 'sources': [ 1706 'sources': [
1686 'net_unittests.isolate', 1707 'net_unittests.isolate',
1687 ], 1708 ],
1688 }, 1709 },
1689 ], 1710 ],
1690 }], 1711 }],
1691 ], 1712 ],
1692 } 1713 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698