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': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
10 }, | 10 }, |
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 }, | 492 }, |
493 { | 493 { |
494 'target_name': 'content_jni_headers', | 494 'target_name': 'content_jni_headers', |
495 'type': 'none', | 495 'type': 'none', |
496 'dependencies': [ | 496 'dependencies': [ |
497 'java_set_jni_headers', | 497 'java_set_jni_headers', |
498 'motionevent_jni_headers' | 498 'motionevent_jni_headers' |
499 ], | 499 ], |
500 'includes': [ 'content_jni.gypi' ], | 500 'includes': [ 'content_jni.gypi' ], |
501 }, | 501 }, |
502 { | |
503 'target_name': 'content_icudata', | |
504 'type': 'none', | |
505 'conditions': [ | |
506 ['icu_use_data_file_flag==1', { | |
507 'copies': [ | |
508 { | |
509 'destination': '<(PRODUCT_DIR)/content_shell/assets', | |
510 'files': [ | |
511 '<(PRODUCT_DIR)/icudtl.dat', | |
512 ], | |
513 }, | |
514 ], | |
515 }], | |
516 ], | |
517 }, | |
518 ], | 502 ], |
519 }], # OS == "android" | 503 }], # OS == "android" |
520 ], | 504 ], |
521 } | 505 } |
OLD | NEW |