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

Side by Side Diff: content/content.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 | « content/app/content_main_runner.cc ('k') | content/content_browsertests.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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 557 matching lines...) Expand 10 before | Expand all | Expand 10 after
568 { 568 {
569 'destination': '<(PRODUCT_DIR)/content_shell/assets', 569 'destination': '<(PRODUCT_DIR)/content_shell/assets',
570 'files': [ 570 'files': [
571 '<(PRODUCT_DIR)/icudtl.dat', 571 '<(PRODUCT_DIR)/icudtl.dat',
572 ], 572 ],
573 }, 573 },
574 ], 574 ],
575 }], 575 }],
576 ], 576 ],
577 }, 577 },
578 {
579 'target_name': 'content_v8_external_data',
580 'type': 'none',
581 'conditions': [
582 ['v8_use_external_startup_data==1', {
583 'copies': [
584 {
585 'destination': '<(PRODUCT_DIR)/content_shell/assets',
586 'files': [
587 '<(PRODUCT_DIR)/natives_blob.bin',
588 '<(PRODUCT_DIR)/snapshot_blob.bin',
589 ],
590 },
591 ],
592 }],
593 ],
594 },
578 ], 595 ],
579 }], # OS == "android" 596 }], # OS == "android"
580 ], 597 ],
581 } 598 }
OLDNEW
« no previous file with comments | « content/app/content_main_runner.cc ('k') | content/content_browsertests.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698