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

Side by Side Diff: content/content.gyp

Issue 156333002: Enable icu_use_data_file_flag on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Log.w -> Log.e in ResourceExtractor-deleteFiles Created 6 years, 10 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 | Annotate | Revision Log
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': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
10 }, 10 },
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 }, 497 },
498 { 498 {
499 'target_name': 'content_jni_headers', 499 'target_name': 'content_jni_headers',
500 'type': 'none', 500 'type': 'none',
501 'dependencies': [ 501 'dependencies': [
502 'java_set_jni_headers', 502 'java_set_jni_headers',
503 'motionevent_jni_headers' 503 'motionevent_jni_headers'
504 ], 504 ],
505 'includes': [ 'content_jni.gypi' ], 505 'includes': [ 'content_jni.gypi' ],
506 }, 506 },
507 {
508 'target_name': 'content_icudata',
509 'type': 'none',
510 'conditions': [
511 ['icu_use_data_file_flag==1', {
512 'copies': [
513 {
514 'destination': '<(PRODUCT_DIR)/content_shell/assets',
515 'files': [
516 '<(PRODUCT_DIR)/icudtl.dat',
517 ],
518 },
519 ],
520 }],
521 ],
522 },
507 ], 523 ],
508 }], # OS == "android" 524 }], # OS == "android"
509 ], 525 ],
510 } 526 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698