| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 392 "metrics/sample_vector.h", | 392 "metrics/sample_vector.h", |
| 393 "metrics/bucket_ranges.cc", | 393 "metrics/bucket_ranges.cc", |
| 394 "metrics/bucket_ranges.h", | 394 "metrics/bucket_ranges.h", |
| 395 "metrics/histogram.cc", | 395 "metrics/histogram.cc", |
| 396 "metrics/histogram.h", | 396 "metrics/histogram.h", |
| 397 "metrics/histogram_base.cc", | 397 "metrics/histogram_base.cc", |
| 398 "metrics/histogram_base.h", | 398 "metrics/histogram_base.h", |
| 399 "metrics/histogram_delta_serialization.cc", | 399 "metrics/histogram_delta_serialization.cc", |
| 400 "metrics/histogram_delta_serialization.", | 400 "metrics/histogram_delta_serialization.", |
| 401 "metrics/histogram_flattener.h", | 401 "metrics/histogram_flattener.h", |
| 402 "metrics/histogram_macros.h", |
| 402 "metrics/histogram_samples.cc", | 403 "metrics/histogram_samples.cc", |
| 403 "metrics/histogram_samples.h", | 404 "metrics/histogram_samples.h", |
| 404 "metrics/histogram_snapshot_manager.cc", | 405 "metrics/histogram_snapshot_manager.cc", |
| 405 "metrics/histogram_snapshot_manager.h", | 406 "metrics/histogram_snapshot_manager.h", |
| 406 "metrics/sparse_histogram.cc", | 407 "metrics/sparse_histogram.cc", |
| 407 "metrics/sparse_histogram.h", | 408 "metrics/sparse_histogram.h", |
| 408 "metrics/statistics_recorder.cc", | 409 "metrics/statistics_recorder.cc", |
| 409 "metrics/statistics_recorder.h", | 410 "metrics/statistics_recorder.h", |
| 410 "metrics/stats_counters.cc", | 411 "metrics/stats_counters.cc", |
| 411 "metrics/stats_counters.h", | 412 "metrics/stats_counters.h", |
| (...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 } | 1396 } |
| 1396 | 1397 |
| 1397 if (is_android) { | 1398 if (is_android) { |
| 1398 deps += [ | 1399 deps += [ |
| 1399 "//testing/android:native_test_native_code", | 1400 "//testing/android:native_test_native_code", |
| 1400 ] | 1401 ] |
| 1401 set_sources_assignment_filter([]) | 1402 set_sources_assignment_filter([]) |
| 1402 sources += [ "debug/proc_maps_linux_unittest.cc" ] | 1403 sources += [ "debug/proc_maps_linux_unittest.cc" ] |
| 1403 set_sources_assignment_filter(sources_assignment_filter) | 1404 set_sources_assignment_filter(sources_assignment_filter) |
| 1404 } | 1405 } |
| 1406 |
| 1407 if (is_win) { |
| 1408 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 1409 cflags = [ "/wd4267" ] |
| 1410 } |
| 1405 } | 1411 } |
| 1406 | 1412 |
| 1407 if (is_android) { | 1413 if (is_android) { |
| 1408 # GYP: //base.gyp:base_jni_headers | 1414 # GYP: //base.gyp:base_jni_headers |
| 1409 generate_jni("base_jni_headers") { | 1415 generate_jni("base_jni_headers") { |
| 1410 sources = [ | 1416 sources = [ |
| 1411 "android/java/src/org/chromium/base/ApplicationStatus.java", | 1417 "android/java/src/org/chromium/base/ApplicationStatus.java", |
| 1412 "android/java/src/org/chromium/base/BuildInfo.java", | 1418 "android/java/src/org/chromium/base/BuildInfo.java", |
| 1413 "android/java/src/org/chromium/base/CommandLine.java", | 1419 "android/java/src/org/chromium/base/CommandLine.java", |
| 1414 "android/java/src/org/chromium/base/ContentUriUtils.java", | 1420 "android/java/src/org/chromium/base/ContentUriUtils.java", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1505 # GYP: //base.gyp:base_unittests_apk | 1511 # GYP: //base.gyp:base_unittests_apk |
| 1506 unittest_apk("base_unittests_apk") { | 1512 unittest_apk("base_unittests_apk") { |
| 1507 deps = [ | 1513 deps = [ |
| 1508 ":base_java", | 1514 ":base_java", |
| 1509 ":base_java_unittest_support", | 1515 ":base_java_unittest_support", |
| 1510 ":base_unittests", | 1516 ":base_unittests", |
| 1511 ] | 1517 ] |
| 1512 unittests_dep = ":base_unittests" | 1518 unittests_dep = ":base_unittests" |
| 1513 } | 1519 } |
| 1514 } | 1520 } |
| OLD | NEW |