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

Side by Side Diff: net/net.gyp

Issue 1424983004: Using copy_ex to copy assets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remvoe build log Created 5 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
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 'linux_link_kerberos%': 0, 8 'linux_link_kerberos%': 0,
9 'conditions': [ 9 'conditions': [
10 ['chromeos==1 or embedded==1 or OS=="ios"', { 10 ['chromeos==1 or embedded==1 or OS=="ios"', {
(...skipping 1502 matching lines...) Expand 10 before | Expand all | Expand 10 after
1513 'net_java', 1513 'net_java',
1514 'net_javatests', 1514 'net_javatests',
1515 'net_java_test_support', 1515 'net_java_test_support',
1516 'net_unittests', 1516 'net_unittests',
1517 ], 1517 ],
1518 'conditions': [ 1518 'conditions': [
1519 ['v8_use_external_startup_data==1', { 1519 ['v8_use_external_startup_data==1', {
1520 'dependencies': [ 1520 'dependencies': [
1521 '../v8/tools/gyp/v8.gyp:v8_external_snapshot', 1521 '../v8/tools/gyp/v8.gyp:v8_external_snapshot',
1522 ], 1522 ],
1523 'copies': [ 1523 'variables': {
1524 { 1524 'dest_path': '<(asset_location)',
1525 'destination': '<(asset_location)', 1525 'src_files': [
1526 'files': [ 1526 '<(PRODUCT_DIR)/natives_blob.bin',
1527 '<(PRODUCT_DIR)/natives_blob.bin', 1527 '<(PRODUCT_DIR)/snapshot_blob.bin',
1528 '<(PRODUCT_DIR)/snapshot_blob.bin', 1528 ],
1529 ], 1529 'clear': 1,
1530 }, 1530 },
1531 ], 1531 'includes': ['../build/android/copy_ex.gypi'],
1532 }], 1532 }],
1533 ], 1533 ],
1534 'variables': { 1534 'variables': {
1535 'test_suite_name': 'net_unittests', 1535 'test_suite_name': 'net_unittests',
1536 'isolate_file': 'net_unittests.isolate', 1536 'isolate_file': 'net_unittests.isolate',
1537 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml', 1537 'android_manifest_path': 'android/unittest_support/AndroidManifest.x ml',
1538 'resource_dir': 'android/unittest_support/res', 1538 'resource_dir': 'android/unittest_support/res',
1539 'conditions': [ 1539 'conditions': [
1540 ['v8_use_external_startup_data==1', { 1540 ['v8_use_external_startup_data==1', {
1541 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets', 1541 'asset_location': '<(PRODUCT_DIR)/net_unittests_apk/assets',
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 '../build/isolate.gypi', 1618 '../build/isolate.gypi',
1619 ], 1619 ],
1620 'sources': [ 1620 'sources': [
1621 'net_unittests.isolate', 1621 'net_unittests.isolate',
1622 ], 1622 ],
1623 }, 1623 },
1624 ], 1624 ],
1625 }], 1625 }],
1626 ], 1626 ],
1627 } 1627 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698