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

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

Issue 573843002: Allows webview to access extension resources. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix problems with early returns. Created 6 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 7
8 # GYP version: extensions/extensions.gyp:extensions_browser 8 # GYP version: extensions/extensions.gyp:extensions_browser
9 source_set("browser") { 9 source_set("browser") {
10 sources = [ 10 sources = [
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 "runtime_data.h", 389 "runtime_data.h",
390 "script_execution_observer.h", 390 "script_execution_observer.h",
391 "script_executor.cc", 391 "script_executor.cc",
392 "script_executor.h", 392 "script_executor.h",
393 "state_store.cc", 393 "state_store.cc",
394 "state_store.h", 394 "state_store.h",
395 "suggest_permission_util.cc", 395 "suggest_permission_util.cc",
396 "suggest_permission_util.h", 396 "suggest_permission_util.h",
397 "uninstall_reason.h", 397 "uninstall_reason.h",
398 "update_observer.h", 398 "update_observer.h",
399 "url_request_util.cc",
400 "url_request_util.h",
399 "value_store/leveldb_value_store.cc", 401 "value_store/leveldb_value_store.cc",
400 "value_store/leveldb_value_store.h", 402 "value_store/leveldb_value_store.h",
401 "value_store/testing_value_store.cc", 403 "value_store/testing_value_store.cc",
402 "value_store/testing_value_store.h", 404 "value_store/testing_value_store.h",
403 "value_store/value_store.cc", 405 "value_store/value_store.cc",
404 "value_store/value_store.h", 406 "value_store/value_store.h",
405 "value_store/value_store_change.cc", 407 "value_store/value_store_change.cc",
406 "value_store/value_store_change.h", 408 "value_store/value_store_change.h",
407 "value_store/value_store_frontend.cc", 409 "value_store/value_store_frontend.cc",
408 "value_store/value_store_frontend.h", 410 "value_store/value_store_frontend.h",
(...skipping 30 matching lines...) Expand all
439 ] 441 ]
440 } 442 }
441 } 443 }
442 444
443 if (is_win) { 445 if (is_win) {
444 cflags = [ 446 cflags = [
445 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 447 "/wd4267", # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
446 ] 448 ]
447 } 449 }
448 } 450 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698