| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
| 8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
| 9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
| 10 }, | 10 }, |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 ['OS!="android" and OS!="ios"', { | 270 ['OS!="android" and OS!="ios"', { |
| 271 'dependencies': [ | 271 'dependencies': [ |
| 272 '../google_apis/gcm/gcm.gyp:*', | 272 '../google_apis/gcm/gcm.gyp:*', |
| 273 ], | 273 ], |
| 274 }], | 274 }], |
| 275 ['chromeos==1 or OS=="linux" or OS=="win" or OS=="mac"', { | 275 ['chromeos==1 or OS=="linux" or OS=="win" or OS=="mac"', { |
| 276 'dependencies': [ | 276 'dependencies': [ |
| 277 '../extensions/shell/app_shell.gyp:*', | 277 '../extensions/shell/app_shell.gyp:*', |
| 278 ], | 278 ], |
| 279 }], | 279 }], |
| 280 ['chromeos==1', { | |
| 281 'dependencies': [ | |
| 282 '../athena/main/athena_main.gyp:*', | |
| 283 ], | |
| 284 }], | |
| 285 ['envoy==1', { | 280 ['envoy==1', { |
| 286 'dependencies': [ | 281 'dependencies': [ |
| 287 '../envoy/envoy.gyp:*', | 282 '../envoy/envoy.gyp:*', |
| 288 ], | 283 ], |
| 289 }], | 284 }], |
| 290 ], | 285 ], |
| 291 }, # target_name: All | 286 }, # target_name: All |
| 292 { | 287 { |
| 293 'target_name': 'All_syzygy', | 288 'target_name': 'All_syzygy', |
| 294 'type': 'none', | 289 'type': 'none', |
| (...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1330 # Tests that currently only work on Linux. | 1325 # Tests that currently only work on Linux. |
| 1331 'dependencies': [ | 1326 'dependencies': [ |
| 1332 '../base/base.gyp:base_unittests', | 1327 '../base/base.gyp:base_unittests', |
| 1333 '../ipc/ipc.gyp:ipc_tests', | 1328 '../ipc/ipc.gyp:ipc_tests', |
| 1334 '../sql/sql.gyp:sql_unittests', | 1329 '../sql/sql.gyp:sql_unittests', |
| 1335 '../sync/sync.gyp:sync_unit_tests', | 1330 '../sync/sync.gyp:sync_unit_tests', |
| 1336 ], | 1331 ], |
| 1337 }], | 1332 }], |
| 1338 ['chromeos==1', { | 1333 ['chromeos==1', { |
| 1339 'dependencies': [ | 1334 'dependencies': [ |
| 1340 '../athena/main/athena_main.gyp:*', | |
| 1341 '../chromeos/chromeos.gyp:chromeos_unittests', | 1335 '../chromeos/chromeos.gyp:chromeos_unittests', |
| 1342 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', | 1336 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', |
| 1343 ], | 1337 ], |
| 1344 }], | 1338 }], |
| 1345 ['use_ozone==1', { | 1339 ['use_ozone==1', { |
| 1346 'dependencies': [ | 1340 'dependencies': [ |
| 1347 '../ui/ozone/ozone.gyp:*', | 1341 '../ui/ozone/ozone.gyp:*', |
| 1348 '../ui/ozone/demo/ozone_demos.gyp:*', | 1342 '../ui/ozone/demo/ozone_demos.gyp:*', |
| 1349 ], | 1343 ], |
| 1350 }], | 1344 }], |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1410 'dependencies': [ | 1404 'dependencies': [ |
| 1411 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1405 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1412 '../ui/views/views.gyp:views', | 1406 '../ui/views/views.gyp:views', |
| 1413 '../ui/views/views.gyp:views_unittests', | 1407 '../ui/views/views.gyp:views_unittests', |
| 1414 ], | 1408 ], |
| 1415 }, # target_name: macviews_builder | 1409 }, # target_name: macviews_builder |
| 1416 ], # targets | 1410 ], # targets |
| 1417 }], # os=='mac' and toolkit_views==1 | 1411 }], # os=='mac' and toolkit_views==1 |
| 1418 ], # conditions | 1412 ], # conditions |
| 1419 } | 1413 } |
| OLD | NEW |