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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1080 }, | 1080 }, |
1081 'includes': [ | 1081 'includes': [ |
1082 '../build/java.gypi', | 1082 '../build/java.gypi', |
1083 ], | 1083 ], |
1084 }, | 1084 }, |
1085 ], # 'targets' | 1085 ], # 'targets' |
1086 'includes': [ | 1086 'includes': [ |
1087 'chrome_android.gypi', | 1087 'chrome_android.gypi', |
1088 ]}, # 'includes' | 1088 ]}, # 'includes' |
1089 ], # OS=="android" | 1089 ], # OS=="android" |
| 1090 ['OS!="android" and OS!="ios"', { |
| 1091 'targets': [ |
| 1092 { |
| 1093 'target_name': 'jtl_compiler', |
| 1094 'type': 'executable', |
| 1095 'dependencies': [ |
| 1096 '../base/base.gyp:base', |
| 1097 'jtl_compiler_lib', |
| 1098 ], |
| 1099 'sources': [ |
| 1100 'tools/profile_reset/jtl_compiler_frontend.cc', |
| 1101 ], |
| 1102 }, |
| 1103 { |
| 1104 'target_name': 'jtl_compiler_lib', |
| 1105 'type': 'static_library', |
| 1106 'product_name': 'jtl_compiler', |
| 1107 'dependencies': [ |
| 1108 '../base/base.gyp:base', |
| 1109 '../crypto/crypto.gyp:crypto', |
| 1110 '../third_party/re2/re2.gyp:re2', |
| 1111 ], |
| 1112 'sources': [ |
| 1113 'browser/profile_resetter/jtl_foundation.h', |
| 1114 'browser/profile_resetter/jtl_foundation.cc', |
| 1115 'browser/profile_resetter/jtl_instructions.h', |
| 1116 'tools/profile_reset/jtl_compiler.h', |
| 1117 'tools/profile_reset/jtl_compiler.cc', |
| 1118 'tools/profile_reset/jtl_parser.h', |
| 1119 'tools/profile_reset/jtl_parser.cc', |
| 1120 ], |
| 1121 }, |
| 1122 ]}, |
| 1123 ], # OS!="android" and OS!="ios" |
1090 ['configuration_policy==1 and OS!="android"', { | 1124 ['configuration_policy==1 and OS!="android"', { |
1091 'includes': [ 'policy.gypi', ], | 1125 'includes': [ 'policy.gypi', ], |
1092 }], | 1126 }], |
1093 ['enable_printing==1', { | 1127 ['enable_printing==1', { |
1094 'targets': [ | 1128 'targets': [ |
1095 { | 1129 { |
1096 'target_name': 'service', | 1130 'target_name': 'service', |
1097 'type': 'static_library', | 1131 'type': 'static_library', |
1098 'variables': { 'enable_wexit_time_destructors': 1, }, | 1132 'variables': { 'enable_wexit_time_destructors': 1, }, |
1099 'dependencies': [ | 1133 'dependencies': [ |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1181 'sources': [ | 1215 'sources': [ |
1182 'service/cloud_print/print_system_cups.cc', | 1216 'service/cloud_print/print_system_cups.cc', |
1183 ], | 1217 ], |
1184 }], | 1218 }], |
1185 ], | 1219 ], |
1186 }, | 1220 }, |
1187 ], | 1221 ], |
1188 }], | 1222 }], |
1189 ], # 'conditions' | 1223 ], # 'conditions' |
1190 } | 1224 } |
OLD | NEW |