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

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: rebased Created 6 years, 9 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
« no previous file with comments | « chrome/chrome_android_paks.gypi ('k') | content/content_shell.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 },
502 ], 518 ],
503 }], # OS == "android" 519 }], # OS == "android"
504 ], 520 ],
505 } 521 }
OLDNEW
« no previous file with comments | « chrome/chrome_android_paks.gypi ('k') | content/content_shell.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698