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

Side by Side Diff: ui/ui.gyp

Issue 14823005: Remove inside_chromium_build gyp variable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort gyps, fix ios Created 7 years, 7 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 | « skia/skia.gyp ('k') | webkit/base/webkit_base.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, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'shell_dialogs.gypi', 10 'shell_dialogs.gypi',
11 'ui_resources.gypi', 11 'ui_resources.gypi',
12 'ui_unittests.gypi',
12 ], 13 ],
13 'targets': [ 14 'targets': [
14 { 15 {
15 'target_name': 'ui', 16 'target_name': 'ui',
16 'type': '<(component)', 17 'type': '<(component)',
17 'dependencies': [ 18 'dependencies': [
18 '../base/base.gyp:base', 19 '../base/base.gyp:base',
19 '../base/base.gyp:base_i18n', 20 '../base/base.gyp:base_i18n',
20 '../base/base.gyp:base_static', 21 '../base/base.gyp:base_static',
21 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations', 22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 'sources!': [ 872 'sources!': [
872 'gfx/render_text.cc', 873 'gfx/render_text.cc',
873 'gfx/render_text.h', 874 'gfx/render_text.h',
874 ], 875 ],
875 }], 876 }],
876 ['OS=="linux"', { 877 ['OS=="linux"', {
877 'libraries': [ 878 'libraries': [
878 '-ldl', 879 '-ldl',
879 ], 880 ],
880 }], 881 }],
881 ['inside_chromium_build==0', {
882 'dependencies': [
883 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
884 ],
885 }],
886 ['use_system_icu==1', { 882 ['use_system_icu==1', {
887 # When using the system icu, the icu targets generate shim headers 883 # When using the system icu, the icu targets generate shim headers
888 # which are included by public headers in the ui target, so we need 884 # which are included by public headers in the ui target, so we need
889 # ui to be a hard dependency for all its users. 885 # ui to be a hard dependency for all its users.
890 'hard_dependency': 1, 886 'hard_dependency': 1,
891 }], 887 }],
892 ], 888 ],
893 }, 889 },
894 ], 890 ],
895 'conditions': [ 891 'conditions': [
896 ['inside_chromium_build == 1', {
897 'includes': [
898 'ui_unittests.gypi',
899 ]},
900 ],
901 ['OS=="android"' , { 892 ['OS=="android"' , {
902 'targets': [ 893 'targets': [
903 { 894 {
904 'target_name': 'ui_jni_headers', 895 'target_name': 'ui_jni_headers',
905 'type': 'none', 896 'type': 'none',
906 'direct_dependent_settings': { 897 'direct_dependent_settings': {
907 'include_dirs': [ 898 'include_dirs': [
908 '<(SHARED_INTERMEDIATE_DIR)/ui', 899 '<(SHARED_INTERMEDIATE_DIR)/ui',
909 ], 900 ],
910 }, 901 },
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 'xcode_settings': { 995 'xcode_settings': {
1005 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO', 996 'GCC_SYMBOLS_PRIVATE_EXTERN': 'NO',
1006 }, 997 },
1007 }], 998 }],
1008 ], 999 ],
1009 }, 1000 },
1010 ], 1001 ],
1011 }], 1002 }],
1012 ], 1003 ],
1013 } 1004 }
OLDNEW
« no previous file with comments | « skia/skia.gyp ('k') | webkit/base/webkit_base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698