| OLD | NEW |
| 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 | 8 |
| 9 source_set("browser") { | 9 source_set("browser") { |
| 10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "//crypto", | 36 "//crypto", |
| 37 "//net", | 37 "//net", |
| 38 "//skia", | 38 "//skia", |
| 39 "//sql", | 39 "//sql", |
| 40 "//third_party/re2", | 40 "//third_party/re2", |
| 41 "//third_party/WebKit/public:blink_headers", | 41 "//third_party/WebKit/public:blink_headers", |
| 42 "//third_party/zlib", | 42 "//third_party/zlib", |
| 43 "//third_party/zlib:zip", | 43 "//third_party/zlib:zip", |
| 44 "//ui/accessibility", | 44 "//ui/accessibility", |
| 45 "//ui/accessibility:ax_gen", | 45 "//ui/accessibility:ax_gen", |
| 46 "//ui/base:ui_base", | 46 "//ui/base", |
| 47 "//ui/events", | 47 "//ui/events", |
| 48 "//ui/events:gesture_detection", | 48 "//ui/events:gesture_detection", |
| 49 "//ui/gfx", | 49 "//ui/gfx", |
| 50 "//ui/gfx/geometry", | 50 "//ui/gfx/geometry", |
| 51 "//ui/resources", | 51 "//ui/resources", |
| 52 # TODO(GYP) | 52 # TODO(GYP) |
| 53 #"//ui/snapshot", | 53 #"//ui/snapshot", |
| 54 #'../google_apis/google_apis.gyp:google_apis', | 54 #'../google_apis/google_apis.gyp:google_apis', |
| 55 #'browser/service_worker/service_worker_proto.gyp:database_proto', | 55 #'browser/service_worker/service_worker_proto.gyp:database_proto', |
| 56 #'browser/speech/proto/speech_proto.gyp:speech_proto', | 56 #'browser/speech/proto/speech_proto.gyp:speech_proto', |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 # 'dependencies': [ | 370 # 'dependencies': [ |
| 371 # '../build/linux/system.gyp:dbus', | 371 # '../build/linux/system.gyp:dbus', |
| 372 # '../dbus/dbus.gyp:dbus', | 372 # '../dbus/dbus.gyp:dbus', |
| 373 # ], | 373 # ], |
| 374 # }, { # OS != "linux" or use_dbus==0 | 374 # }, { # OS != "linux" or use_dbus==0 |
| 375 # 'sources!': [ | 375 # 'sources!': [ |
| 376 # 'browser/geolocation/wifi_data_provider_linux.cc', | 376 # 'browser/geolocation/wifi_data_provider_linux.cc', |
| 377 # ], | 377 # ], |
| 378 # }], | 378 # }], |
| 379 } | 379 } |
| OLD | NEW |