Chromium Code Reviews| 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 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 400 'VCLinkerTool': { | 400 'VCLinkerTool': { |
| 401 # Enable profile information (necessary for SyzyAsan | 401 # Enable profile information (necessary for SyzyAsan |
| 402 # instrumentation). This is incompatible with incremental | 402 # instrumentation). This is incompatible with incremental |
| 403 # linking. | 403 # linking. |
| 404 'Profile': 'true', | 404 'Profile': 'true', |
| 405 }, | 405 }, |
| 406 } | 406 } |
| 407 }], | 407 }], |
| 408 ], | 408 ], |
| 409 }], | 409 }], |
| 410 ['chromeos==1', { | |
| 411 'dependencies': [ | |
| 412 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', | |
| 413 ], | |
| 414 }], | |
| 410 ['OS=="linux"', { | 415 ['OS=="linux"', { |
| 411 'dependencies': [ | 416 'dependencies': [ |
| 412 '../dbus/dbus.gyp:dbus_unittests', | 417 '../dbus/dbus.gyp:dbus_unittests', |
| 413 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 418 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
| 414 ], | 419 ], |
| 415 }], | 420 }], |
| 416 ['OS=="mac"', { | 421 ['OS=="mac"', { |
| 417 'dependencies': [ | 422 'dependencies': [ |
| 418 '../ui/app_list/app_list.gyp:app_list_unittests', | 423 '../ui/app_list/app_list.gyp:app_list_unittests', |
| 419 '../ui/message_center/message_center.gyp:*', | 424 '../ui/message_center/message_center.gyp:*', |
| (...skipping 879 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1299 # Tests that currently only work on Linux. | 1304 # Tests that currently only work on Linux. |
| 1300 'dependencies': [ | 1305 'dependencies': [ |
| 1301 '../base/base.gyp:base_unittests', | 1306 '../base/base.gyp:base_unittests', |
| 1302 '../ipc/ipc.gyp:ipc_tests', | 1307 '../ipc/ipc.gyp:ipc_tests', |
| 1303 '../sql/sql.gyp:sql_unittests', | 1308 '../sql/sql.gyp:sql_unittests', |
| 1304 '../sync/sync.gyp:sync_unit_tests', | 1309 '../sync/sync.gyp:sync_unit_tests', |
| 1305 ], | 1310 ], |
| 1306 }], | 1311 }], |
| 1307 ['chromeos==1', { | 1312 ['chromeos==1', { |
| 1308 'dependencies': [ | 1313 'dependencies': [ |
| 1314 '../athena/main/athena_main.gyp:*', | |
| 1315 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', | |
|
Mr4D (OOO till 08-26)
2014/11/17 21:22:36
Sorting - can you please move this one line down?
| |
| 1309 '../chromeos/chromeos.gyp:chromeos_unittests', | 1316 '../chromeos/chromeos.gyp:chromeos_unittests', |
| 1310 '../athena/main/athena_main.gyp:*', | |
| 1311 ], | 1317 ], |
| 1312 }], | 1318 }], |
| 1313 ['use_ozone==1', { | 1319 ['use_ozone==1', { |
| 1314 'dependencies': [ | 1320 'dependencies': [ |
| 1315 '../ui/ozone/ozone.gyp:*', | 1321 '../ui/ozone/ozone.gyp:*', |
| 1316 '../ui/ozone/demo/ozone_demos.gyp:*', | 1322 '../ui/ozone/demo/ozone_demos.gyp:*', |
| 1317 ], | 1323 ], |
| 1318 }], | 1324 }], |
| 1319 ], | 1325 ], |
| 1320 }, | 1326 }, |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1378 'dependencies': [ | 1384 'dependencies': [ |
| 1379 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1385 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1380 '../ui/views/views.gyp:views', | 1386 '../ui/views/views.gyp:views', |
| 1381 '../ui/views/views.gyp:views_unittests', | 1387 '../ui/views/views.gyp:views_unittests', |
| 1382 ], | 1388 ], |
| 1383 }, # target_name: macviews_builder | 1389 }, # target_name: macviews_builder |
| 1384 ], # targets | 1390 ], # targets |
| 1385 }], # os=='mac' and toolkit_views==1 | 1391 }], # os=='mac' and toolkit_views==1 |
| 1386 ], # conditions | 1392 ], # conditions |
| 1387 } | 1393 } |
| OLD | NEW |