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

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

Issue 2332903002: [sensors] [mac] Implement ambient light sensor for macOS (Closed)
Patch Set: Fix comments from Mikhail Created 4 years, 3 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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 "mojo/mojo_shell_connection_impl.cc", 225 "mojo/mojo_shell_connection_impl.cc",
226 "mojo/mojo_shell_connection_impl.h", 226 "mojo/mojo_shell_connection_impl.h",
227 "navigation_gesture.h", 227 "navigation_gesture.h",
228 "navigation_params.cc", 228 "navigation_params.cc",
229 "navigation_params.h", 229 "navigation_params.h",
230 "net/url_fetcher.cc", 230 "net/url_fetcher.cc",
231 "net/url_request_service_worker_data.cc", 231 "net/url_request_service_worker_data.cc",
232 "net/url_request_service_worker_data.h", 232 "net/url_request_service_worker_data.h",
233 "net/url_request_user_data.cc", 233 "net/url_request_user_data.cc",
234 "net/url_request_user_data.h", 234 "net/url_request_user_data.h",
235 "one_writer_seqlock.cc",
236 "one_writer_seqlock.h",
237 "origin_trials/trial_token.cc", 235 "origin_trials/trial_token.cc",
238 "origin_trials/trial_token.h", 236 "origin_trials/trial_token.h",
239 "origin_trials/trial_token_validator.cc", 237 "origin_trials/trial_token_validator.cc",
240 "origin_trials/trial_token_validator.h", 238 "origin_trials/trial_token_validator.h",
241 "origin_util.cc", 239 "origin_util.cc",
242 "p2p_messages.h", 240 "p2p_messages.h",
243 "page_state_serialization.cc", 241 "page_state_serialization.cc",
244 "page_state_serialization.h", 242 "page_state_serialization.h",
245 "page_zoom.cc", 243 "page_zoom.cc",
246 "pepper_file_util.cc", 244 "pepper_file_util.cc",
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 "//base", 356 "//base",
359 "//base/third_party/dynamic_annotations", 357 "//base/third_party/dynamic_annotations",
360 "//build/util:webkit_version", 358 "//build/util:webkit_version",
361 "//cc/ipc", 359 "//cc/ipc",
362 "//cc/surfaces", 360 "//cc/surfaces",
363 "//components/tracing", 361 "//components/tracing",
364 "//components/tracing:startup_tracing", 362 "//components/tracing:startup_tracing",
365 "//content:resources", 363 "//content:resources",
366 "//content/app/resources", 364 "//content/app/resources",
367 "//device/bluetooth", 365 "//device/bluetooth",
366 "//device/generic_sensor:generic_sensor",
timvolodine 2016/09/20 18:05:24 don't think this should depend on the whole generi
368 "//gpu", 367 "//gpu",
369 "//gpu/command_buffer/client:gles2_c_lib", 368 "//gpu/command_buffer/client:gles2_c_lib",
370 "//gpu/command_buffer/client:gles2_cmd_helper", 369 "//gpu/command_buffer/client:gles2_cmd_helper",
371 "//gpu/command_buffer/client:gles2_implementation", 370 "//gpu/command_buffer/client:gles2_implementation",
372 "//gpu/command_buffer/client:gles2_interface", 371 "//gpu/command_buffer/client:gles2_interface",
373 "//gpu/command_buffer/common:gles2_utils", 372 "//gpu/command_buffer/common:gles2_utils",
374 "//gpu/command_buffer/service", 373 "//gpu/command_buffer/service",
375 "//gpu/ipc/client", 374 "//gpu/ipc/client",
376 "//gpu/ipc/common", 375 "//gpu/ipc/common",
377 "//gpu/skia_bindings", 376 "//gpu/skia_bindings",
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
579 "//third_party/WebKit/public:mojo_bindings", 578 "//third_party/WebKit/public:mojo_bindings",
580 "//ui/gfx/geometry/mojo", 579 "//ui/gfx/geometry/mojo",
581 "//url/mojo:url_mojom_gurl", 580 "//url/mojo:url_mojom_gurl",
582 "//url/mojo:url_mojom_origin", 581 "//url/mojo:url_mojom_origin",
583 ] 582 ]
584 583
585 export_class_attribute = "CONTENT_EXPORT" 584 export_class_attribute = "CONTENT_EXPORT"
586 export_define = "CONTENT_IMPLEMENTATION=1" 585 export_define = "CONTENT_IMPLEMENTATION=1"
587 export_header = "content/common/content_export.h" 586 export_header = "content/common/content_export.h"
588 } 587 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698