OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |