Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(167)

Side by Side Diff: base/BUILD.gn

Issue 1548443002: Introducing gpu::CommandBufferId as a distinct, IdType<...>-based type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@type-safe-save-package-id-self-contained
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/base.gyp » ('j') | ipc/ipc_message_utils.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 "files/scoped_temp_dir.h", 335 "files/scoped_temp_dir.h",
336 "format_macros.h", 336 "format_macros.h",
337 "gtest_prod_util.h", 337 "gtest_prod_util.h",
338 "guid.cc", 338 "guid.cc",
339 "guid.h", 339 "guid.h",
340 "guid_posix.cc", 340 "guid_posix.cc",
341 "guid_win.cc", 341 "guid_win.cc",
342 "hash.cc", 342 "hash.cc",
343 "hash.h", 343 "hash.h",
344 "id_map.h", 344 "id_map.h",
345 "id_type.h",
345 "ios/crb_protocol_observers.h", 346 "ios/crb_protocol_observers.h",
346 "ios/crb_protocol_observers.mm", 347 "ios/crb_protocol_observers.mm",
347 "ios/device_util.h", 348 "ios/device_util.h",
348 "ios/device_util.mm", 349 "ios/device_util.mm",
349 "ios/ios_util.h", 350 "ios/ios_util.h",
350 "ios/ios_util.mm", 351 "ios/ios_util.mm",
351 "ios/ns_error_util.h", 352 "ios/ns_error_util.h",
352 "ios/ns_error_util.mm", 353 "ios/ns_error_util.mm",
353 "ios/scoped_critical_action.h", 354 "ios/scoped_critical_action.h",
354 "ios/scoped_critical_action.mm", 355 "ios/scoped_critical_action.mm",
(...skipping 1230 matching lines...) Expand 10 before | Expand all | Expand 10 after
1585 "i18n/file_util_icu_unittest.cc", 1586 "i18n/file_util_icu_unittest.cc",
1586 "i18n/icu_string_conversions_unittest.cc", 1587 "i18n/icu_string_conversions_unittest.cc",
1587 "i18n/message_formatter_unittest.cc", 1588 "i18n/message_formatter_unittest.cc",
1588 "i18n/number_formatting_unittest.cc", 1589 "i18n/number_formatting_unittest.cc",
1589 "i18n/rtl_unittest.cc", 1590 "i18n/rtl_unittest.cc",
1590 "i18n/streaming_utf8_validator_unittest.cc", 1591 "i18n/streaming_utf8_validator_unittest.cc",
1591 "i18n/string_search_unittest.cc", 1592 "i18n/string_search_unittest.cc",
1592 "i18n/time_formatting_unittest.cc", 1593 "i18n/time_formatting_unittest.cc",
1593 "i18n/timezone_unittest.cc", 1594 "i18n/timezone_unittest.cc",
1594 "id_map_unittest.cc", 1595 "id_map_unittest.cc",
1596 "id_type_unittest.cc",
1595 "ios/device_util_unittest.mm", 1597 "ios/device_util_unittest.mm",
1596 "ios/weak_nsobject_unittest.mm", 1598 "ios/weak_nsobject_unittest.mm",
1597 "json/json_parser_unittest.cc", 1599 "json/json_parser_unittest.cc",
1598 "json/json_reader_unittest.cc", 1600 "json/json_reader_unittest.cc",
1599 "json/json_value_converter_unittest.cc", 1601 "json/json_value_converter_unittest.cc",
1600 "json/json_value_serializer_unittest.cc", 1602 "json/json_value_serializer_unittest.cc",
1601 "json/json_writer_unittest.cc", 1603 "json/json_writer_unittest.cc",
1602 "json/string_escape_unittest.cc", 1604 "json/string_escape_unittest.cc",
1603 "lazy_instance_unittest.cc", 1605 "lazy_instance_unittest.cc",
1604 "logging_unittest.cc", 1606 "logging_unittest.cc",
(...skipping 448 matching lines...) Expand 10 before | Expand all | Expand 10 after
2053 2055
2054 # GYP: //base.gyp:base_java_unittest_support 2056 # GYP: //base.gyp:base_java_unittest_support
2055 android_library("base_java_unittest_support") { 2057 android_library("base_java_unittest_support") {
2056 deps = [ 2058 deps = [
2057 ":base_java", 2059 ":base_java",
2058 ] 2060 ]
2059 java_files = 2061 java_files =
2060 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2062 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2061 } 2063 }
2062 } 2064 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | ipc/ipc_message_utils.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698