| 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 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1567 } | 1567 } |
| 1568 | 1568 |
| 1569 if (!is_ios) { | 1569 if (!is_ios) { |
| 1570 executable("build_utf8_validator_tables") { | 1570 executable("build_utf8_validator_tables") { |
| 1571 sources = [ | 1571 sources = [ |
| 1572 "i18n/build_utf8_validator_tables.cc", | 1572 "i18n/build_utf8_validator_tables.cc", |
| 1573 ] | 1573 ] |
| 1574 deps = [ | 1574 deps = [ |
| 1575 ":base", | 1575 ":base", |
| 1576 "//build/config/sanitizers:deps", | 1576 "//build/config/sanitizers:deps", |
| 1577 "//build/win:default_exe_manifest", |
| 1577 "//third_party/icu:icuuc", | 1578 "//third_party/icu:icuuc", |
| 1578 ] | 1579 ] |
| 1579 } | 1580 } |
| 1580 | 1581 |
| 1581 executable("check_example") { | 1582 executable("check_example") { |
| 1582 sources = [ | 1583 sources = [ |
| 1583 "check_example.cc", | 1584 "check_example.cc", |
| 1584 ] | 1585 ] |
| 1585 deps = [ | 1586 deps = [ |
| 1586 ":base", | 1587 ":base", |
| 1587 "//build/config/sanitizers:deps", | 1588 "//build/config/sanitizers:deps", |
| 1589 "//build/win:default_exe_manifest", |
| 1588 ] | 1590 ] |
| 1589 } | 1591 } |
| 1590 } | 1592 } |
| 1591 } | 1593 } |
| 1592 | 1594 |
| 1593 source_set("message_loop_tests") { | 1595 source_set("message_loop_tests") { |
| 1594 testonly = true | 1596 testonly = true |
| 1595 sources = [ | 1597 sources = [ |
| 1596 "message_loop/message_loop_test.cc", | 1598 "message_loop/message_loop_test.cc", |
| 1597 "message_loop/message_loop_test.h", | 1599 "message_loop/message_loop_test.h", |
| (...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2364 | 2366 |
| 2365 # GYP: //base.gyp:base_java_unittest_support | 2367 # GYP: //base.gyp:base_java_unittest_support |
| 2366 android_library("base_java_unittest_support") { | 2368 android_library("base_java_unittest_support") { |
| 2367 deps = [ | 2369 deps = [ |
| 2368 ":base_java", | 2370 ":base_java", |
| 2369 ] | 2371 ] |
| 2370 java_files = | 2372 java_files = |
| 2371 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2373 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2372 } | 2374 } |
| 2373 } | 2375 } |
| OLD | NEW |