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

Side by Side Diff: icu.gyp

Issue 9146044: Switch 'settings' to 'none', as the former is deprecated. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/icu46/
Patch Set: Created 8 years, 11 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 | « no previous file | no next file » | 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 'use_system_icu%': 0, 7 'use_system_icu%': 0,
8 'icu_use_data_file_flag%': 0, 8 'icu_use_data_file_flag%': 0,
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 '-Wno-tautological-compare', 600 '-Wno-tautological-compare',
601 ], 601 ],
602 }], 602 }],
603 ], 603 ],
604 }, 604 },
605 ], 605 ],
606 }, { # use_system_icu != 0 606 }, { # use_system_icu != 0
607 'targets': [ 607 'targets': [
608 { 608 {
609 'target_name': 'system_icu', 609 'target_name': 'system_icu',
610 'type': 'settings', 610 'type': 'none',
611 'direct_dependent_settings': { 611 'direct_dependent_settings': {
612 'defines': [ 612 'defines': [
613 'USE_SYSTEM_ICU', 613 'USE_SYSTEM_ICU',
614 ], 614 ],
615 }, 615 },
616 'link_settings': { 616 'link_settings': {
617 'ldflags': [ 617 'ldflags': [
618 '<!@(icu-config --ldflags)', 618 '<!@(icu-config --ldflags)',
619 ], 619 ],
620 'libraries': [ 620 'libraries': [
(...skipping 16 matching lines...) Expand all
637 { 637 {
638 'target_name': 'icuuc', 638 'target_name': 'icuuc',
639 'type': 'none', 639 'type': 'none',
640 'dependencies': ['system_icu'], 640 'dependencies': ['system_icu'],
641 'export_dependent_settings': ['system_icu'], 641 'export_dependent_settings': ['system_icu'],
642 }, 642 },
643 ], 643 ],
644 }], 644 }],
645 ], 645 ],
646 } 646 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698