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

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

Powered by Google App Engine
This is Rietveld 408576698