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