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

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: Disable external snapshot for webview 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 (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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
565 { 565 {
566 'destination': '<(PRODUCT_DIR)/content_shell/assets', 566 'destination': '<(PRODUCT_DIR)/content_shell/assets',
567 'files': [ 567 'files': [
568 '<(PRODUCT_DIR)/icudtl.dat', 568 '<(PRODUCT_DIR)/icudtl.dat',
569 ], 569 ],
570 }, 570 },
571 ], 571 ],
572 }], 572 }],
573 ], 573 ],
574 }, 574 },
575 {
576 'target_name': 'content_v8_external_data',
577 'type': 'none',
578 'conditions': [
579 ['v8_use_external_startup_data==1', {
580 'copies': [
581 {
582 'destination': '<(PRODUCT_DIR)/content_shell/assets',
583 'files': [
584 '<(PRODUCT_DIR)/natives_blob.bin',
585 '<(PRODUCT_DIR)/snapshot_blob.bin',
586 ],
587 },
588 ],
589 }],
590 ],
591 },
575 ], 592 ],
576 }], # OS == "android" 593 }], # OS == "android"
577 ], 594 ],
578 } 595 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698