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

Side by Side Diff: content/browser/BUILD.gn

Issue 1892083002: Generic Sensor API : Ambient Light Sensor API. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/browser/browser.gni") 7 import("//content/browser/browser.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 9
10 source_set("browser") { 10 source_set("browser") {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 "//content/browser/devtools:resources", 48 "//content/browser/devtools:resources",
49 "//content/browser/notifications:notification_proto", 49 "//content/browser/notifications:notification_proto",
50 "//content/browser/service_worker:service_worker_proto", 50 "//content/browser/service_worker:service_worker_proto",
51 "//content/browser/speech/proto", 51 "//content/browser/speech/proto",
52 "//content/common", 52 "//content/common",
53 "//content/public/common:common_sources", 53 "//content/public/common:common_sources",
54 "//content/public/common:mojo_bindings", 54 "//content/public/common:mojo_bindings",
55 "//crypto", 55 "//crypto",
56 "//device/battery", 56 "//device/battery",
57 "//device/bluetooth", 57 "//device/bluetooth",
58 "//device/sensor",
58 "//device/vibration", 59 "//device/vibration",
59 "//gin", 60 "//gin",
60 "//google_apis", 61 "//google_apis",
61 "//gpu", 62 "//gpu",
62 "//gpu/command_buffer/client:gles2_implementation", 63 "//gpu/command_buffer/client:gles2_implementation",
63 "//ipc/mojo", 64 "//ipc/mojo",
64 "//media", 65 "//media",
65 "//media/midi", 66 "//media/midi",
66 "//mojo/common", 67 "//mojo/common",
67 "//mojo/common:url_type_converters", 68 "//mojo/common:url_type_converters",
(...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 "speech/endpointer/energy_endpointer.cc", 357 "speech/endpointer/energy_endpointer.cc",
357 "speech/endpointer/energy_endpointer.h", 358 "speech/endpointer/energy_endpointer.h",
358 "speech/endpointer/energy_endpointer_params.cc", 359 "speech/endpointer/energy_endpointer_params.cc",
359 "speech/endpointer/energy_endpointer_params.h", 360 "speech/endpointer/energy_endpointer_params.h",
360 "speech/speech_recognition_engine.cc", 361 "speech/speech_recognition_engine.cc",
361 "speech/speech_recognition_engine.h", 362 "speech/speech_recognition_engine.h",
362 "speech/speech_recognizer_impl.cc", 363 "speech/speech_recognizer_impl.cc",
363 "speech/speech_recognizer_impl.h", 364 "speech/speech_recognizer_impl.h",
364 ] 365 ]
365 deps -= [ "//device/battery" ] 366 deps -= [ "//device/battery" ]
367 deps -= [ "//device/sensor" ]
366 deps += [ 368 deps += [
367 "//content/public/android:jni", 369 "//content/public/android:jni",
368 "//media", 370 "//media",
369 "//media/mojo/interfaces", 371 "//media/mojo/interfaces",
370 "//mojo/android:libsystem_java", 372 "//mojo/android:libsystem_java",
371 "//ui/android", 373 "//ui/android",
372 ] 374 ]
373 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ] 375 defines += [ "APPCACHE_USE_SIMPLE_CACHE" ]
374 libs += [ "jnigraphics" ] 376 libs += [ "jnigraphics" ]
375 } 377 }
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
520 522
521 # See comment at the top of //content/BUILD.gn for how this works. 523 # See comment at the top of //content/BUILD.gn for how this works.
522 group("for_content_tests") { 524 group("for_content_tests") {
523 visibility = [ "//content/test/*" ] 525 visibility = [ "//content/test/*" ]
524 if (!is_component_build) { 526 if (!is_component_build) {
525 public_deps = [ 527 public_deps = [
526 ":browser", 528 ":browser",
527 ] 529 ]
528 } 530 }
529 } 531 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698