| 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 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 'VCLinkerTool': { | 398 'VCLinkerTool': { |
| 399 # Enable profile information (necessary for SyzyAsan | 399 # Enable profile information (necessary for SyzyAsan |
| 400 # instrumentation). This is incompatible with incremental | 400 # instrumentation). This is incompatible with incremental |
| 401 # linking. | 401 # linking. |
| 402 'Profile': 'true', | 402 'Profile': 'true', |
| 403 }, | 403 }, |
| 404 } | 404 } |
| 405 }], | 405 }], |
| 406 ], | 406 ], |
| 407 }], | 407 }], |
| 408 ['chromeos==1', { |
| 409 'dependencies': [ |
| 410 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', |
| 411 ], |
| 412 }], |
| 408 ['OS=="linux"', { | 413 ['OS=="linux"', { |
| 409 'dependencies': [ | 414 'dependencies': [ |
| 410 '../dbus/dbus.gyp:dbus_unittests', | 415 '../dbus/dbus.gyp:dbus_unittests', |
| 411 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 416 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
| 412 ], | 417 ], |
| 413 }], | 418 }], |
| 414 ['OS=="mac"', { | 419 ['OS=="mac"', { |
| 415 'dependencies': [ | 420 'dependencies': [ |
| 416 '../ui/app_list/app_list.gyp:app_list_unittests', | 421 '../ui/app_list/app_list.gyp:app_list_unittests', |
| 417 '../ui/message_center/message_center.gyp:*', | 422 '../ui/message_center/message_center.gyp:*', |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1287 # Tests that currently only work on Linux. | 1292 # Tests that currently only work on Linux. |
| 1288 'dependencies': [ | 1293 'dependencies': [ |
| 1289 '../base/base.gyp:base_unittests', | 1294 '../base/base.gyp:base_unittests', |
| 1290 '../ipc/ipc.gyp:ipc_tests', | 1295 '../ipc/ipc.gyp:ipc_tests', |
| 1291 '../sql/sql.gyp:sql_unittests', | 1296 '../sql/sql.gyp:sql_unittests', |
| 1292 '../sync/sync.gyp:sync_unit_tests', | 1297 '../sync/sync.gyp:sync_unit_tests', |
| 1293 ], | 1298 ], |
| 1294 }], | 1299 }], |
| 1295 ['chromeos==1', { | 1300 ['chromeos==1', { |
| 1296 'dependencies': [ | 1301 'dependencies': [ |
| 1302 '../athena/main/athena_main.gyp:*', |
| 1297 '../chromeos/chromeos.gyp:chromeos_unittests', | 1303 '../chromeos/chromeos.gyp:chromeos_unittests', |
| 1298 '../athena/main/athena_main.gyp:*', | 1304 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', |
| 1299 ], | 1305 ], |
| 1300 }], | 1306 }], |
| 1301 ['use_ozone==1', { | 1307 ['use_ozone==1', { |
| 1302 'dependencies': [ | 1308 'dependencies': [ |
| 1303 '../ui/ozone/ozone.gyp:*', | 1309 '../ui/ozone/ozone.gyp:*', |
| 1304 '../ui/ozone/demo/ozone_demos.gyp:*', | 1310 '../ui/ozone/demo/ozone_demos.gyp:*', |
| 1305 ], | 1311 ], |
| 1306 }], | 1312 }], |
| 1307 ], | 1313 ], |
| 1308 }, | 1314 }, |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1366 'dependencies': [ | 1372 'dependencies': [ |
| 1367 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1373 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1368 '../ui/views/views.gyp:views', | 1374 '../ui/views/views.gyp:views', |
| 1369 '../ui/views/views.gyp:views_unittests', | 1375 '../ui/views/views.gyp:views_unittests', |
| 1370 ], | 1376 ], |
| 1371 }, # target_name: macviews_builder | 1377 }, # target_name: macviews_builder |
| 1372 ], # targets | 1378 ], # targets |
| 1373 }], # os=='mac' and toolkit_views==1 | 1379 }], # os=='mac' and toolkit_views==1 |
| 1374 ], # conditions | 1380 ], # conditions |
| 1375 } | 1381 } |
| OLD | NEW |