| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE | 5 # HOW TO WRITE CONDITIONALS IN THIS FILE |
| 6 # ====================================== | 6 # ====================================== |
| 7 # | 7 # |
| 8 # In many other places, one would write a conditional that expresses all the | 8 # In many other places, one would write a conditional that expresses all the |
| 9 # cases when a source file is used or unused, and then either add or subtract | 9 # cases when a source file is used or unused, and then either add or subtract |
| 10 # it from the sources list in that case | 10 # it from the sources list in that case |
| (...skipping 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1458 "check_example.cc", | 1458 "check_example.cc", |
| 1459 ] | 1459 ] |
| 1460 deps = [ | 1460 deps = [ |
| 1461 ":base", | 1461 ":base", |
| 1462 "//build/config/sanitizers:deps", | 1462 "//build/config/sanitizers:deps", |
| 1463 ] | 1463 ] |
| 1464 } | 1464 } |
| 1465 } | 1465 } |
| 1466 } | 1466 } |
| 1467 | 1467 |
| 1468 # TODO(brettw) remove these forwarding targets when all references to prefs are | |
| 1469 # updated to point to components. | |
| 1470 group("prefs") { | |
| 1471 public_deps = [ | |
| 1472 "//components/prefs", | |
| 1473 ] | |
| 1474 } | |
| 1475 group("prefs_test_support") { | |
| 1476 testonly = true | |
| 1477 public_deps = [ | |
| 1478 "//components/prefs:test_support", | |
| 1479 ] | |
| 1480 } | |
| 1481 | |
| 1482 source_set("message_loop_tests") { | 1468 source_set("message_loop_tests") { |
| 1483 testonly = true | 1469 testonly = true |
| 1484 sources = [ | 1470 sources = [ |
| 1485 "message_loop/message_loop_test.cc", | 1471 "message_loop/message_loop_test.cc", |
| 1486 "message_loop/message_loop_test.h", | 1472 "message_loop/message_loop_test.h", |
| 1487 ] | 1473 ] |
| 1488 | 1474 |
| 1489 deps = [ | 1475 deps = [ |
| 1490 ":base", | 1476 ":base", |
| 1491 "//testing/gtest", | 1477 "//testing/gtest", |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2061 | 2047 |
| 2062 # GYP: //base.gyp:base_java_unittest_support | 2048 # GYP: //base.gyp:base_java_unittest_support |
| 2063 android_library("base_java_unittest_support") { | 2049 android_library("base_java_unittest_support") { |
| 2064 deps = [ | 2050 deps = [ |
| 2065 ":base_java", | 2051 ":base_java", |
| 2066 ] | 2052 ] |
| 2067 java_files = | 2053 java_files = |
| 2068 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2054 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2069 } | 2055 } |
| 2070 } | 2056 } |
| OLD | NEW |