| OLD | NEW |
| 1 { | 1 { |
| 2 'includes': [ | 2 'includes': [ |
| 3 'extensions_tests.gypi', | 3 'extensions_tests.gypi', |
| 4 ], | 4 ], |
| 5 'variables': { | 5 'variables': { |
| 6 # Product name is used for Mac bundle. | 6 # Product name is used for Mac bundle. |
| 7 'app_shell_product_name': 'App Shell', | 7 'app_shell_product_name': 'App Shell', |
| 8 # The version is high enough to be supported by Omaha (at least 31) | 8 # The version is high enough to be supported by Omaha (at least 31) |
| 9 # but fake enough to be obviously not a Chrome release. | 9 # but fake enough to be obviously not a Chrome release. |
| 10 'app_shell_version': '38.1234.5678.9', | 10 'app_shell_version': '38.1234.5678.9', |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 'dependencies': [ | 119 'dependencies': [ |
| 120 'extensions_browsertests', | 120 'extensions_browsertests', |
| 121 ], | 121 ], |
| 122 'includes': [ | 122 'includes': [ |
| 123 '../build/isolate.gypi', | 123 '../build/isolate.gypi', |
| 124 ], | 124 ], |
| 125 'sources': [ | 125 'sources': [ |
| 126 'extensions_browsertests.isolate', | 126 'extensions_browsertests.isolate', |
| 127 ], | 127 ], |
| 128 }, | 128 }, |
| 129 { |
| 130 'target_name': 'extensions_unittests_run', |
| 131 'type': 'none', |
| 132 'dependencies': [ |
| 133 'extensions_unittests', |
| 134 ], |
| 135 'includes': [ |
| 136 '../build/isolate.gypi', |
| 137 ], |
| 138 'sources': [ |
| 139 'extensions_unittests.isolate', |
| 140 ], |
| 141 } |
| 129 ], | 142 ], |
| 130 }], | 143 }], |
| 131 ], | 144 ], |
| 132 } | 145 } |
| OLD | NEW |